oc.runtime-components.0.9.0.source-code.SkipOverflowChecks.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime-components Show documentation
Show all versions of runtime-components Show documentation
Adds some utilities to code, developed originally for Advent of Code solving
The newest version!
package com.sschr15.aoc.annotations
/**
* Marks an expression to skip overflow checks.
* Any called functions will still have checks applied unless also marked
* or built without the compiler plugin (such as the standard libraries).
*/
@Target(
AnnotationTarget.CLASS,
AnnotationTarget.FUNCTION,
AnnotationTarget.PROPERTY,
AnnotationTarget.EXPRESSION,
)
@Retention(AnnotationRetention.SOURCE)
annotation class SkipOverflowChecks
© 2015 - 2025 Weber Informatics LLC | Privacy Policy