zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

float.ex (497B)


      1 defmodule Absinthe.Blueprint.Input.Float do
      2   @moduledoc false
      3 
      4   alias Absinthe.Blueprint
      5 
      6   @enforce_keys [:value]
      7   defstruct [
      8     :value,
      9     :source_location,
     10     # Added by phases
     11     flags: %{},
     12     schema_node: nil,
     13     errors: []
     14   ]
     15 
     16   @type t :: %__MODULE__{
     17           value: float,
     18           flags: Blueprint.flags_t(),
     19           source_location: Blueprint.SourceLocation.t(),
     20           schema_node: nil | Absinthe.Type.t(),
     21           errors: [Absinthe.Phase.Error.t()]
     22         }
     23 end