(l *State)
| 46 | } |
| 47 | |
| 48 | func andHelper(l *State) uint { |
| 49 | x := bitOp(l, ^uint(0), func(a, b uint) uint { return a & b }) |
| 50 | return x |
| 51 | } |
| 52 | |
| 53 | func fieldArguments(l *State, fieldIndex int) (uint, uint) { |
| 54 | f, w := CheckInteger(l, fieldIndex), OptInteger(l, fieldIndex+1, 1) |