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

izumi.idealingua.model.loader.LoadedModel.scala Maven / Gradle / Ivy

The newest version!
package izumi.idealingua.model.loader

import izumi.idealingua.model.il.ast.raw.defns.RawTopLevelDefn

final case class LoadedModel(definitions: Seq[RawTopLevelDefn]) {
  def ++(other: LoadedModel): LoadedModel = {
    LoadedModel(definitions ++ other.definitions)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy