MakeRecord(S, T)ΒΆ
mkrecord.spad line 1 [edit on github]
MakeRecord is used internally by the interpreter to create record types which are used for doing parallel iterations on streams.
- makeRecord: (S, T) -> Record(part1: S, part2: T)
makeRecord(a, b)
creates a record object with type Record(part1
:S
,part2
:T
), wherepart1
isa
andpart2
isb
.