Uses of Class
org.kink_lang.kink.BinVal

Packages that use BinVal
Package
Description
The core package of the Kink vm.
  • Uses of BinVal in org.kink_lang.kink

    Methods in org.kink_lang.kink that return BinVal
    Modifier and Type
    Method
    Description
    BinVal.concat(BinVal tail)
    Returns a bin val which concatenates this and tail.
    BinHelper.of(byte[] bytes)
    Returns a bin val, copying the bytes.
    BinHelper.of(byte[] bytes, int from, int to)
    Returns a bin val, copyin the bytes inclusively from from, exclusively to to.
    BinVal.slice(int from, int to)
    Returns a sliced bin between from (inclusive) and to (exclusive).
    Methods in org.kink_lang.kink with parameters of type BinVal
    Modifier and Type
    Method
    Description
    int
    BinVal.compareTo(BinVal arg)
    Returns a negative number if this is less than arg, 0 if this is equivalent to arg, or a positive number if this is greater than arg.
    BinVal.concat(BinVal tail)
    Returns a bin val which concatenates this and tail.