12 lines
293 B
Factor
12 lines
293 B
Factor
|
|
USING: help.markup help.syntax sequences ;
|
||
|
|
IN: math.vectors.simd.intrinsics
|
||
|
|
|
||
|
|
HELP: (simd-select)
|
||
|
|
{ $description "Word which implements " { $link nth } " for SIMD vectors." }
|
||
|
|
{ $examples
|
||
|
|
{ $unchecked-example
|
||
|
|
"float-4{ 3 4 9 1 } underlying>> 2 float-4-rep (simd-select)"
|
||
|
|
"9.0"
|
||
|
|
}
|
||
|
|
} ;
|