Hello!

Want to notify about new release 1.33

changes:

fixed signed integers parsing

optimized integers matching

implemented endian attribute for floating point types
! Please note that now big-endian is defualt endianess for floating types, this can break or slowdonw your old code. ! Use "host" attribute to restore old behavior (VALUE float) -> (VALUE float host)

implemented boolean type
 (bitconstruct (#t boolean)) -> #u8(1)
 (bitconstruct (#t 32 boolean big)) -> #u8(0 0 0 1)
 (bitmatch "\x00" [((B 8 boolean)) B]) -> #f

new procs available
 (bitstring-bit-set? bitstring bit-index)
 (bitstring-reverse bitstring chunk-size endian)
 (bitstring-not bitstring)


_______________________________________________
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to