README ¶ concat Overview Description Join two strings together or a list of strings. It is possible to concat s0, s1, and slist together. Implementation details Concating as bytes to go faster. Compliance to Spec Rough level of compliance 100% Expand ▾ Collapse ▴ Documentation ¶ Index ¶ func New(ctx operation.InitContext) (operation.Operation, error) type Input func (i *Input) FromMap(values map[string]interface{}) error type Operation func (a *Operation) Eval(inputs map[string]interface{}) (interface{}, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func New ¶ func New(ctx operation.InitContext) (operation.Operation, error) Types ¶ type Input ¶ type Input struct { S0 string `md:"s0"` S1 string `md:"s1"` Slist []interface{} `md:"slist"` } func (*Input) FromMap ¶ func (i *Input) FromMap(values map[string]interface{}) error type Operation ¶ type Operation struct { // contains filtered or unexported fields } func (*Operation) Eval ¶ func (a *Operation) Eval(inputs map[string]interface{}) (interface{}, error) Source Files ¶ View all Source files metadata.go operation.go Click to show internal directories. Click to hide internal directories.