-
Notifications
You must be signed in to change notification settings - Fork 86
u8data set!
Chris Petersen edited this page Oct 16, 2014
·
1 revision
u8data-set! sets u8data value.
Parameter | Description |
---|---|
data | u8vector operated on |
idx | Index of the value to be replaced |
val | New value to be set |
Example 1: Replace the 4th value of a u8data with 99
> (define mydata (u8vector->u8data (u8vector 1 4 9 16 25 36)))
> (u8data->u8vector mydata)
#u8(1 4 9 16 25 36)
> (u8data-set! mydata 4 99)
> (u8data->u8vector mydata)
#u8(1 4 9 16 99 36)
-
- accelerometer
- alist
- audio
- audioaux
- base64
- btle-scan
- camera
- cdb
- cgi
- config
- csv
- curl
- digest
- dmtx
- download
- eventloop
- fcgi
- fft
- generalized-arrays
- gps
- graph
- gyro
- hidapi
- hpdf
- html
- httpsclient
- hybridapp
- json
- lmdb
- ln_core
- ln_glcore
- ln_glgui
- ln_store
- localization
- localization_gui
- localnotification
- magnetometer
- mdns
- mqtt
- mqtt-store
- multitouch
- oauth
- orientation
- p256ecdsa
- png
- portaudio
- pregexp
- pressure
- prime
- pushnotification
- redcap
- rsa
- rtaudio
- rupi
- rotation
- sanestring
- scheduler
- serial
- sets
- settings
- simplexnoise
- sqlite
- ssax
- syntax-case
- timestamp
- ttf
- uiform
- url
- uuid
- vibrate
- videoplayer
- watchdog
- website
- xml
- zip