cat_2.9.0-1.0.1.0.source-code.json.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hubcat_2.9.0-1 Show documentation
Show all versions of hubcat_2.9.0-1 Show documentation
a vvip client of the github enterprises
The newest version!
package hubcat
import net.liftweb.json.{ JString, JNothing, JValue, JInt }
trait Jsonizing {
def jStringOrNone(opt: Option[String]) = opt match { case Some(s) => JString(s) case _ => JNothing }
def jIntOrNone(opt: Option[Int]) = opt match { case Some(i) => JInt(BigInt(i)) case _ => JNothing }
}