_methods

trait _methods

Float Extension Methods

Extension methods universaly avaialble for type scala.Float

Source
_methods.scala
class java.lang.Object
trait scala.Matchable
class Any

Def

@targetName("range")
inline def <>(to: Float): Float.Range

Range

Range

Returns Float.Range from current to given value

 (1F <> 10F).tp  // Prints  1.0 <> 10.0
Source
_methods.scala
@targetName("rangeX")
inline def <>>(to: Float): Float.Range

Exclusive end range

Exclusive end range

Returns Float.Range from current to given value exclusive

 (1F <>> 10F).tp  // Prints  1.0 <>> 10.0
Source
_methods.scala
@targetName("Opt")
inline def ?: Float.Opt

To option

To option

Returns Float.Opt for current value

 val o : Float.Opt = 12F.?
Source
_methods.scala
inline def max(v: Float): Float

Max value

Max value

Returns maximum of current or given value

 val v = 5F

 v.max(0).tp   // Prints 5.0

 v.max(10).tp  // Prints 10.0
Source
_methods.scala
inline def min(v: Float): Float

Min value

Min value

Returns minimun of current or given value

 val v = 5F

 v.min(0).tp   // Prints 0.0

 v.min(10).tp  // Prints 5.0
Source
_methods.scala
inline def roundTo(unit: Float)(using r: Math.Rounding): Float

Round to size

Round to size

Rounds current value to specified size

 91F.roundTo(5).tp            // Prints 90.0

 91F.roundTo(5)(using UP).tp  // Prints 95.0
Source
_methods.scala
inline def roundToDecimal(d: Int)(using r: Math.Rounding): Float

Round to decimal

Round to decimal

Rounds current value to specified decimal position of fractional value

Source
_methods.scala
inline def toByte: Byte

Make Byte

Make Byte

Attached Byte constructor

Source
_methods.scala
inline def toChar: Char

Make Char

Make Char

Attached Char constructor

Source
_methods.scala
inline def toDouble: Double

Make Double

Make Double

Attached Double constructor

Source
_methods.scala
inline def toFloat: Float

Make Float

Make Float

Returns underlying value

Source
_methods.scala
inline def toInt: Int

Make Int

Make Int

Attached Int constructor

Source
_methods.scala
inline def toLong: Long

Make Long

Make Long

Attached Long constructor

Source
_methods.scala
inline def toNumber: java.lang.Float

Make Number

Make Number

Attached Number constructor

Source
_methods.scala
inline def toShort: Short

Make Short

Make Short

Attached Short constructor

Source
_methods.scala

Make

inline def Big: BigDecimal

Make BigDecimal

Make BigDecimal

BigDecimal constructor attached to Float

Source
_methods.scala
inline def Day: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Days: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Hour: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Hours: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Micros: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Millis: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Minute: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Minutes: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Nanos: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Percent: Percent

Make Percent

Make Percent

Percent constructor attached to Float

Source
_methods.scala
inline def Second: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Seconds: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Week: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala
inline def Weeks: Time.Length

Make Time.Length

Make Time.Length

Time.Length constructor attached to Float

Source
_methods.scala