(l *State, index int, def uint)
| 370 | } |
| 371 | |
| 372 | func OptUnsigned(l *State, index int, def uint) uint { |
| 373 | if l.IsNoneOrNil(index) { |
| 374 | return def |
| 375 | } |
| 376 | return CheckUnsigned(l, index) |
| 377 | } |
| 378 | |
| 379 | func TypeNameOf(l *State, index int) string { return l.TypeOf(index).String() } |
| 380 |
nothing calls this directly
no test coverage detected