comparison core/src/luan/modules/Binary.luan @ 567:6c00b8a59240

document Binary
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 05 Jul 2015 19:29:56 -0600
parents 92c3d22745b8
children
comparison
equal deleted inserted replaced
566:90b93790c544 567:6c00b8a59240
1 java() 1 java()
2 local BinaryLuan = require "java:luan.modules.BinaryLuan" 2 local BinaryLuan = require "java:luan.modules.BinaryLuan"
3 3
4
4 local M = {} 5 local M = {}
5 6
7 M.binary = BinaryLuan.binary
6 M.byte = BinaryLuan.byte_ 8 M.byte = BinaryLuan.byte_
7 M.binary = BinaryLuan.binary
8 M.to_string = BinaryLuan.to_string 9 M.to_string = BinaryLuan.to_string
9 10
10 return M 11 return M