transnet v -- takes a list v of integers, and assembles the bytes of the
integers, four at a time, in network order (high order byte
first), into a string.
transnet s -- takes a string s whose length is a multiple
of 4, and assembles its bytes four at a time into integers, returning the list
of assembled integers.
i1 : transnet {1,2,3} |