Manifold is a Java compiler plugin, its features include Metaprogramming, Properties, Extension Methods, Operator Overloading, Templates, a Preprocessor, and more.
Extension methods marked with @Expires don't account for javac --release option.
For instance, the Stream#toList() method defined in manifold-collections is not available when compiling with, say JDK 21, with javac option --release 8.
Extension methods marked with
@Expires
don't account for javac--release
option.For instance, the
Stream#toList()
method defined inmanifold-collections
is not available when compiling with, say JDK 21, with javac option--release 8
.