Versions in this module Expand all Collapse all v1 v1.1.0 Jun 28, 2024 v1.0.3 Jun 21, 2024 Changes in this version + func Eval(infix string, placeholders []map[string]any) (result any, err error) + func PostfixToInfix(postfix Postfix) (string, error) + func Value(placeholder string, placeholders []map[string]any) (val any, err error) + type Postfix []Token + func InfixToPostfix(infix string) (postfix Postfix, err error) + func (postfix Postfix) Eval(placeholders []map[string]any) (value any, err error) + func (postfix Postfix) String() string + type Token struct + func (token Token) MarshalJSON() ([]byte, error) + func (token Token) Nature() string + func (token Token) Origin() string