Previous: bytevectors utils, Up: bytevectors [Index]
The libraries (vicare containers bytevectors s8)
,
(vicare containers bytevectors u8)
, (vicare containers
bytevectors s8low)
and (vicare containers bytevectors u8low)
extend the bytevector operations available in the base library;
(vicare-scheme)Bytevectors.
While (vicare containers bytevectors s8)
and (vicare
containers bytevectors u8)
are high level interfaces, (vicare
containers bytevectors s8low)
and (vicare containers bytevectors
u8low)
are low level interfaces with the same functionalities; there is
special support for bytevectors representing strings in ASCII
encoding.
To avoid identifiers collision: it is suggested to import these libraries with the prefix ‘bv.’, as in:
(import (vicare) (prefix (vicare containers bytevectors u8) bv.))
• bytevectors 8 intro: | Introduction. | |
• bytevectors 8 convention: | Interface conventions. | |
• bytevectors 8 views: | Views over bytevectors. | |
• bytevectors 8 cons: | Constructors. | |
• bytevectors 8 pred: | Predicates. | |
• bytevectors 8 compar: | Comparison. | |
• bytevectors 8 map: | Mapping functions. | |
• bytevectors 8 case: | Case mapping. | |
• bytevectors 8 fold: | Fold and unfold. | |
• bytevectors 8 select: | Selection. | |
• bytevectors 8 pad: | Padding and trimming. | |
• bytevectors 8 prefix: | Prefixes and suffixes. | |
• bytevectors 8 search: | Searching. | |
• bytevectors 8 filter: | Filtering and deleting. | |
• bytevectors 8 list: | List and bytevector conversion. | |
• bytevectors 8 replicate: | Replicate and rotate. | |
• bytevectors 8 mutate: | Mutators. | |
• bytevectors 8 misc: | Miscellaneous functions. |
Previous: bytevectors utils, Up: bytevectors [Index]