(args ...vector.Any)
| 95 | func (*Now) needsInput() {} |
| 96 | |
| 97 | func (n *Now) Call(args ...vector.Any) vector.Any { |
| 98 | v := int64(nano.Now()) |
| 99 | return vector.NewConstInt(super.TypeTime, v, args[0].Len()) |
| 100 | } |
| 101 | |
| 102 | type Strftime struct { |
| 103 | sctx *super.Context |
nothing calls this directly
no test coverage detected