Record Class Boc.BuilderOp.BitString

java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Boc.BuilderOp.BitString
Record Components:
value - Contains hexadecimal string representation: - Can end with `_` tag. - Can be prefixed with `x` or `X`. - Can be prefixed with `x{` or `X{` and ended with `}`. Contains binary string represented as a sequence of `0` and `1` prefixed with `n` or `N`. Examples: `1AB`, `x1ab`, `X1AB`, `x{1abc}`, `X{1ABC}` `2D9_`, `x2D9_`, `X2D9_`, `x{2D9_}`, `X{2D9_}` `n00101101100`, `N00101101100` Bit string content using bitstring notation. See `TON VM specification` 1.0.
All Implemented Interfaces:
Boc.BuilderOp
Enclosing interface:
Boc.BuilderOp

public static record Boc.BuilderOp.BitString(String value) extends Record implements Boc.BuilderOp
Append bit string to cell data.