Go to the first, previous, next, last section, table of contents.


|=

Function: |= { [chars] string -> [chars] tOrNil }
file: job.t
package: muf
status: alpha

A quick way of comparing a block of chars vs a string for textual equality.

The block should contain chars or ints. The |= prim returns nil unless the block is the same length as string, and unless the low 8 bits of each char or int match the value of the corresponding byte in the string.

Stack:
[ 'a' 'b' 'c' 'd' 'e' | "abcde" |=
Stack: [ 'a' 'b' 'c' 'd' 'e' | t


Go to the first, previous, next, last section, table of contents.