Elixir XDR v0.1.1 XDR.Type.VariableArray View Source

A variable-length array of some other type

Link to this section Summary

Link to this section Types

Link to this type

options()

View Source
options() :: [type: XDR.Type.key(), max_length: XDR.Size.t()]
Link to this type

t()

View Source
t() :: %XDR.Type.VariableArray{
  data_type: XDR.Type.t(),
  max_length: XDR.Size.t(),
  type_name: String.t(),
  values: [XDR.Type.t()]
}