NAME

unijp - Unicode::Japanese for erlang

SYNOPSIS

1> unijp:start().
<0.34.0>
2> unijp:conv_binary(utf8, ucs4, <<"text">>).
<<0,0,0,116,0,0,0,101,0,0,0,120,0,0,0,116>>
3> unijp:conv_binary(ucs4, utf8, <<0,0,0,116,0,0,0,101,0,0,0,120,0,0,0,116>>).
<<"text">>

DESCRIPTION

Unicode::Japanese perl モジュールのerlang版.

UniJPのc言語バインディングであるlibunijpを利用.

FUNCTIONS

conv_binary/3

conv_binary(InCode, OutCode, Text) -> Result
InCode  = atom()
OutCode = atom()
Text    = binary()
Result  = binary()

version_string/0

version_tuple/0

version_string() -> string()
version_tuple() -> {Major, Minor, Devel}
Major = int()
Minor = int()
Devel = int()

conv/3

deprecated at 0.0.50.

use conv_binary/3 instead.

conv(InCode, OutCode, Text) -> Result
InCode  = atom() | string()
OutCode = atom() | string()
Text    = iolist() | binary()
Result  = string()

version_str/0

deprecated at 0.0.50.

use version_string/0 instead.