factor/basis/math/vectors/simd/intrinsics/intrinsics-docs.factor

13 lines
374 B
Factor
Raw Normal View History

2015-07-28 23:21:12 -04:00
USING: help.markup help.syntax kernel sequences ;
IN: math.vectors.simd.intrinsics
HELP: (simd-select)
2015-07-28 23:06:59 -04:00
{ $values { "a" object } { "n" object } { "rep" object } { "x" object } }
{ $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"
}
} ;