Next: Byte Data Traversal Functions, Previous: Byte Data String Search Functions, Up: The Byte Data Library [Index]
integer b_even(data d, integer p, text w);
is the number of characters immediately preceding the p position in the d byte array that do not belong to the w character set (negative position indications are interpreted with respect to the end of string)
See Negative Indices.
0 P ----------(---not-in-W---)---------->
integer b_look(data d, integer p, text w);
is the number of characters immediately following the p position in the d byte array that do not belong to the w character set (negative position indications are interpreted with respect to the end of string)
See Negative Indices.
0 P ----------(---not-in-W---)---------->
integer b_rate(data d, integer p, text w);
is the number of characters immediately preceding the p position in the d byte array that belong to the w character set (negative position indications are interpreted with respect to the end of string)
See Negative Indices.
0 P ----------(-----in-W-----)---------->
integer b_side(data d, integer p, text w);
is the number of characters immediately following the p position in the d byte array that belong to the w character set (negative position indications are interpreted with respect to the end of string)
See Negative Indices.
0 P ----------(-----in-W-----)---------->
Next: Byte Data Traversal Functions, Previous: Byte Data String Search Functions, Up: The Byte Data Library [Index]