Tintware Documentation : Tint Programming Language : Tint Reference : Value Primitives : tint.restn-bytesSyntax#(tint.restn-bytes,%s,%n) #(tint.restn-bytes,%s,%n,%retain) %s is a value the rest of whose bytes will be returned after skipping the first %n. %n must be a number. If %retain is specified, then the code or data attribute in %s will be carried into the result. Otherwise, the result is all data. Examples#(tint.restn-bytes,abcdef,3) def #(tint.restn-bytes,abcdef,9) #(tint.restn-bytes,abcdef,3,y) def |