All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.msgpack.template.GenericEitherTemplate.scala Maven / Gradle / Ivy

The newest version!
package org.msgpack.template

/**
 *
 * User: takeshita
 * Create: 12/04/21 4:02
 */

class GenericEitherTemplate extends GenericTemplate {
  def build(params: Array[Template[_]]) = {
    new EitherTemplate[Any,Any](params(0).asInstanceOf[Template[Any]],
      params(1).asInstanceOf[Template[Any]]).asInstanceOf[Template[Any]]
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy