expr

package module
v1.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 5, 2020 License: MIT Imports: 10 Imported by: 2

README

Expr

Circle CI GoDoc GitHub stars GitHub license

datasweet-logo

Expr is an engine that can evaluate expressions. Expr is a fork from https://github.com/antonmedv/expr

We used the initial package to add custom formula in our package https://github.com/datasweet/datatable. We forked the initial project to fit our needs: operators and functions must process scalar or slices.

column + 1

with column = [1,2,3,4,5] output = [2,3,4,5,6]

Also, we removed the map nodes (ie {"foo": "bar}), the struct evaluation, and the type checking before evaluation.

Installation

go get github.com/datasweet/expr

Who are we ?

We are Datasweet, a french startup providing full service (big) data solutions.

Questions ? problems ? suggestions ?

If you find a bug or want to request a feature, please create a GitHub Issue.

License

MIT License

Copyright (c) 2018 Anton Medvedev
Portions Copyright (c) 2019 Datasweet

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Eval

func Eval(input string, env interface{}) (interface{}, error)

Eval parses and evaluates given input.

func Run

func Run(node Node, env interface{}) (out interface{}, err error)

Run evaluates given ast.

Types

type Node

type Node interface {
	Eval(env interface{}) (interface{}, error)
}

Node represents items of abstract syntax tree.

func Parse

func Parse(input string, ops ...OptionFn) (Node, error)

Parse parses input into ast.

type OptionFn

type OptionFn func(p *parser)

OptionFn for configuring parser.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL