bencode/intermediate

Types

pub type TokenAST {
  IntToken(Int)
  StringToken(BitArray)
  DictionaryToken(Dict(String, TokenAST))
  ListToken(List(TokenAST))
}

Constructors

  • IntToken(Int)
  • StringToken(BitArray)
  • DictionaryToken(Dict(String, TokenAST))
  • ListToken(List(TokenAST))
Search Document