Description
Result types shared by complete-buffer SIMD algorithms.
Search_Result
type Search_Result is record
Found : Boolean := False;
Index : Natural := 0;
end record;
Result of a byte search.
Record fields
- Found
True when the algorithm found the requested byte.
- Index
The Ada array index of the match, or zero when not found.