JetBrains / JetBrains/java-annotations
Double/float range annotation
Abierto
- Lenguaje dominante
- Kotlin
- Estrellas
- 463
- Forks
- 72
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
It would be incredibly useful to have something similar to `@Range` for doubles/floats.
For example, to indicate that the return value is always in the range `[0, 1]` (0 to 1, inclusive)
something like
```java
@Documented
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.TYPE_USE})
public @interface DoubleRange {
double from();
double to();
}
```
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.