License: AGPL-3.0
| Node | Description |
|---|---|
| accumulate-string | Creates a string from a stream of characters by appending each new character to the end of the string until the maximum capacity is reached. |
| parse-integer | Read an integer number from a stream of characters. Stop when a non-numeric character was encountered |
| parse-number | Read a number with floating point from a stream of characters. Stop when a non-numeric character was encountered |
| parse-u32 | Read an unsigned integer number from a stream of characters and returns it as 4 bytes. Stop when a non-numeric character was encountered |
| pass-from-sequence | Lets characters pass through only after a specified sequence is encountered |
| pass-if | Lets values pass through only if COND is true |
| pass-until | Lets values pass through until the value specified in S is encountered |
| pulse-on-sequence | Pulses each time when a specified sequence of characters is encountered |
| skip-until | Lets values pass through only after the value specified in S is encountered |