Toggle navigation
Extempore Functions Index
Core release (v0.8.9)
(current)
XTM Extensions
About
Submit
hidden link
my-tuple-chk
scheme
Defined in:
https://github.com/digego/extempore/tree/v0.8.9/tests/core/constraints.xtm
Implementation
(
define
my-tuple-chk
(
lambda
(
x
)
(
if
(
t:notype?
x
)
#t
(
and
(
t:tuple?
x
)
(
t:elts?
x
3
)))))
Back to Index