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

A fixed-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.t(), length: XDR.Size.t()]
Link to this type

t()

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