view core/src/luan/modules/String.luan @ 341:410e59ebad7d

add more Math functions
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 03 Apr 2015 06:17:11 -0600
parents 7f7708e8fdd4
children cbb94a7c7a9e
line wrap: on
line source

java()
local StringLuan = require "java:luan.modules.StringLuan"

unicode = StringLuan.unicode
char = StringLuan.char_
concat = StringLuan.concat
find = StringLuan.find
format = StringLuan.format
gmatch = StringLuan.gmatch
gsub = StringLuan.gsub
len = StringLuan.len
lower = StringLuan.lower
match = StringLuan.match
rep = StringLuan.rep
reverse = StringLuan.reverse
sub = StringLuan.sub
trim = StringLuan.trim
upper = StringLuan.upper