Current section
Files
Jump to
Current section
Files
lib/xdr/quad_float.ex
defmodule XDR.QuadFloat do
@behaviour XDR.Declaration
@moduledoc """
This module is not supported by the actual byte size
"""
@impl XDR.Declaration
@doc """
not supported
"""
@spec encode_xdr(any) :: any
def encode_xdr(_), do: {:error, :not_supported}
@impl XDR.Declaration
@doc """
not supported
"""
@spec encode_xdr!(any) :: any
def encode_xdr!(_), do: raise("Not supported function")
@impl XDR.Declaration
@doc """
not supported
"""
@spec decode_xdr(any, any) :: any
def decode_xdr(_, _), do: {:error, :not_supported}
@impl XDR.Declaration
@doc """
not supported
"""
@spec decode_xdr!(any, any) :: any
def decode_xdr!(_, _), do: raise("Not supported function")
end