morphir.ir.Documented.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of morphir-ir_3 Show documentation
Show all versions of morphir-ir_3 Show documentation
The morphir[3.3.4].ir.jvm.artifactName package
The newest version!
package morphir.ir
/** Generated based on IR.Documented
*/
object Documented{
final case class Documented[A](
doc: morphir.sdk.String.String,
value: A
){}
def map[A, B](
f: A => B
)(
d: morphir.ir.Documented.Documented[A]
): morphir.ir.Documented.Documented[B] =
(morphir.ir.Documented.Documented(
d.doc,
f(d.value)
) : morphir.ir.Documented.Documented[B])
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy