View Source StellarBase.XDR.Int256Parts (Elixir Stellar Base v0.16.0)

Automatically generated by xdrgen DO NOT EDIT or your changes may be overwritten

Target implementation: elixir_xdr at https://hex.pm/packages/elixir_xdr

Representation of Stellar Int256Parts type.

Summary

Types

@type hi_hi_type() :: StellarBase.XDR.Int64.t()
@type hi_lo_type() :: StellarBase.XDR.UInt64.t()
@type lo_hi_type() :: StellarBase.XDR.UInt64.t()
@type lo_lo_type() :: StellarBase.XDR.UInt64.t()
@type t() :: %StellarBase.XDR.Int256Parts{
  hi_hi: hi_hi_type(),
  hi_lo: hi_lo_type(),
  lo_hi: lo_hi_type(),
  lo_lo: lo_lo_type()
}

Functions

Link to this function

new(hi_hi, hi_lo, lo_hi, lo_lo)

View Source
@spec new(
  hi_hi :: hi_hi_type(),
  hi_lo :: hi_lo_type(),
  lo_hi :: lo_hi_type(),
  lo_lo :: lo_lo_type()
) :: t()