view core/src/luan/modules/String.luan @ 305:5e7450ac27f2

rename String.byte() to String.unicode(); improve Binary; git-svn-id: https://luan-java.googlecode.com/svn/trunk@306 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 19 Dec 2014 07:50:46 +0000
parents 2f8938fc518c
children fed1893821bf
line wrap: on
line source

java()
import "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