Includes a full implementation of a type-homogeneous Tuple type, using the template types feature, as a demonstration/check of its operation. Co-authored-by: Glen Whitney <glen@studioinfinity.org> Reviewed-on: #45
8 lines
302 B
JavaScript
8 lines
302 B
JavaScript
export {Tuple} from './Types/Tuple.mjs'
|
|
|
|
export const isZero = {
|
|
'Tuple<T>': ({'self(T)': me}) => t => t.elts.every(e => me(e))
|
|
// Note we can't just say `every(me)` above since every invokes its
|
|
// callback with more arguments, which then violates typed-function's
|
|
// signature for `me`
|
|
}
|