Interface FloatMapper

All Superinterfaces:
Mapper<Float,Float>

public interface FloatMapper extends Mapper<Float,Float>
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    map(float in)
    Maps a float.
    default Float
    map(Float in)
    Maps an object.
    default FloatMapper
    then(FloatMapper mapper)
     

    Methods inherited from interface dev.prozilla.pine.common.util.function.mapper.Mapper

    then
  • Method Details

    • map

      default Float map(Float in)
      Description copied from interface: Mapper
      Maps an object.
      Specified by:
      map in interface Mapper<Float,Float>
      Parameters:
      in - The original object
      Returns:
      The mapped object.
    • map

      float map(float in)
      Maps a float.
      Parameters:
      in - The original float
      Returns:
      The mapped float.
    • then

      default FloatMapper then(FloatMapper mapper)