Packages
boxic_feel
0.1.0
A native Elixir parser and evaluator for the Friendly Enough Expression Language defined by DMN.
Current section
Files
Jump to
Current section
Files
lib/boxic/feel/range.ex
defmodule Boxic.FEEL.Range do
@moduledoc """
FEEL range value.
"""
defstruct [:start, :end, :start_inclusive, :end_inclusive]
@type t :: %__MODULE__{
start: term(),
end: term(),
start_inclusive: boolean(),
end_inclusive: boolean()
}
end