(i, j int)
| 141 | |
| 142 | func (oe orderedEntries) Len() int { return len(oe) } |
| 143 | func (oe orderedEntries) Less(i, j int) bool { return oe[i].index() < oe[j].index() } |
| 144 | func (oe orderedEntries) Swap(i, j int) { oe[i], oe[j] = oe[j], oe[i] } |
| 145 | |
| 146 | // RestrictMinTime sets the template's min time to the given value if |