BOOLEAN Value

A BOOLEAN value is mapped to a Go true or false constant declaration:

ASN.1 production:

   <name> BOOLEAN ::= <value>

Generated code:

   const Asn1v<name> bool = <value>;

ASN.1 BOOLEAN values are the uppercase names TRUE and FALSE. The equivalent Go names are true and false.