comparison core/src/luan/modules/String.luan @ 539:473e456444ff

Remove object-oriented primitive methods for string and binary
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 01 Jun 2015 17:53:55 -0600
parents 92c3d22745b8
children f4dfe9c64c25
comparison
equal deleted inserted replaced
538:919b9410008e 539:473e456444ff
17 M.lower = StringLuan.lower 17 M.lower = StringLuan.lower
18 M.match = StringLuan.match 18 M.match = StringLuan.match
19 M.matches = StringLuan.matches 19 M.matches = StringLuan.matches
20 M.rep = StringLuan.rep 20 M.rep = StringLuan.rep
21 M.reverse = StringLuan.reverse 21 M.reverse = StringLuan.reverse
22 M.string_to_binary = StringLuan.string_to_binary
23 M.string_to_number = StringLuan.string_to_number
22 M.sub = StringLuan.sub 24 M.sub = StringLuan.sub
23 M.to_binary = StringLuan.to_binary
24 M.to_number = StringLuan.to_number
25 M.trim = StringLuan.trim 25 M.trim = StringLuan.trim
26 M.upper = StringLuan.upper 26 M.upper = StringLuan.upper
27 27
28 return M 28 return M