1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-30 07:38:59 +01:00
liquid/values/docs.go

9 lines
456 B
Go
Raw Permalink Normal View History

2017-08-08 22:42:32 +02:00
// Package values is an internal package that defines methods such as sorting, comparison, and type conversion, that apply to interface types.
2017-07-21 17:56:04 +02:00
//
// It is similar to, and makes heavy use of, the reflect package.
//
// Since the intent is to provide runtime services for the Liquid expression interpreter,
// this package does not implement "generic" generics.
// It attempts to implement Liquid semantics (which are largely Ruby semantics).
2017-08-08 22:42:32 +02:00
package values