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

dev.nigredo.derivation.Store.scala Maven / Gradle / Ivy

The newest version!
package dev.nigredo.derivation

import scala.collection.mutable

/**
  * Store annotation params between macros
  */
object Store {

  lazy val params: mutable.Map[String, Seq[Def]] = mutable.Map()

  def get(k: String): Option[Seq[Def]] = params.get(k)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy