Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 3320ccbb61c4b3cf4a36eccbf7a158ab5573e428 https://github.com/perl6/specs/commit/3320ccbb61c4b3cf4a36eccbf7a158ab5573e428 Author: Larry Wall <la...@wall.org> Date: 2013-05-07 (Tue, 07 May 2013)
Changed paths: M S03-operators.pod Log Message: ----------- distinguish structural unaries by 'is nodal' trait People naturally expect structural unaries like subscripts to be flat but non-structural unaries to recurse when hypered. The best place to hang this info is on the top-level function/method/proto that will be passed to the hyper controller as object representing the operation in question. Subscripts and methods like .values are considered "nodal". For static functions on static shapes of known type, this enables compile-time knowledge of what can be sent to the GPU. Fixes #42