This commit is contained in:
hyunghwan.chung
2018-06-18 14:32:31 +00:00
parent 6d5b6cad00
commit 8536099e74
2 changed files with 269 additions and 4 deletions

View File

@ -299,6 +299,10 @@ class(#byte) ByteArray(Array)
{
## TODO: is it ok for ByteArray to inherit from Array?
## method asByteString
## {
## }
method decodeToCharacter
{
## TODO: support other encodings. it only supports utf8 as of now.
@ -319,6 +323,10 @@ class(#byte) ByteArray(Array)
}
}
class(#byte) ByteString(Array)
{
}
## -------------------------------------------------------------------------------
class OrderedCollection(SequenceableCollection)