-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
SFunction implements value
like this :
value{ arg ...args;
^function.inEnvir( envir ).value( *args );
}
valueArray{ arg ...args;
^function.inEnvir( envir ).value( *(args.unbubble) );
}
This is extremely complicated and inefficient, the following should be enough:
value{ arg ...args;
^envir.use { function.valueArray(args) }
}
also valueArray should take an array as argument:
valueArray{ arg args; // not ... args
^envir.use { function.valueArray(args) }
}
Metadata
Metadata
Assignees
Labels
No labels