cgta.oscala.util.plat.Utf8HelpPlat.scala Maven / Gradle / Ivy
The newest version!
package cgta.oscala
package util.plat
import cgta.oscala.impls.Utf8Converter
import cgta.oscala.util.Utf8Help
//////////////////////////////////////////////////////////////
// Copyright (c) 2014 Ben Jackman, Jeff Gomberg
// All Rights Reserved
// please contact [email protected] or [email protected]
// for licensing inquiries
// Created by bjackman @ 7/16/14 1:02 PM
//////////////////////////////////////////////////////////////
trait Utf8HelpPlat extends Utf8Help {
override def toBytes(s: String): Array[Byte] = Utf8Converter.toBytes(s)
override def fromBytes(bs: Array[Byte]): String = Utf8Converter.fromBytes(bs)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy