* }}} */ * binary operations {{{ */
(values ...LValue)
| 1764 | /* binary operations {{{ */ |
| 1765 | |
| 1766 | func (ls *LState) Concat(values ...LValue) string { |
| 1767 | top := ls.reg.Top() |
| 1768 | for _, value := range values { |
| 1769 | ls.reg.Push(value) |
| 1770 | } |
| 1771 | ret := stringConcat(ls, len(values), ls.reg.Top()-1) |
| 1772 | ls.reg.SetTop(top) |
| 1773 | return LVAsString(ret) |
| 1774 | } |
| 1775 | |
| 1776 | func (ls *LState) LessThan(lhs, rhs LValue) bool { |
| 1777 | return lessThan(ls, lhs, rhs) |
nothing calls this directly
no test coverage detected