...

Source file src/github.com/noirbizarre/gonja/context.go

Documentation: github.com/noirbizarre/gonja

     1  package gonja
     2  
     3  // import (
     4  // 	"github.com/noirbizarre/gonja/exec"
     5  // )
     6  
     7  type Context map[string]interface{}
     8  
     9  // func (c Context) Get(name string) interface{} {
    10  // 	return nil
    11  // }
    12  
    13  // // Update updates this context with the key/value-pairs from another context.
    14  // func (c Context) Update(other exec.Context) Context {
    15  // 	for k, v := range other.AsMap() {
    16  // 		c[k] = v
    17  // 	}
    18  // 	return c
    19  // }
    20  

View as plain text