scalan.ContainerType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common_2.12 Show documentation
Show all versions of common_2.12 Show documentation
Compiling Scala to Something special
The newest version!
package scalan;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** Annotates Special DSL types which implement the interface of containers.
* Each container is described using Cont[_] descriptors.
* Special supporting code is generated for annotated entities. */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface ContainerType {
}