All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.virtdata.long_int.ToInt Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package io.virtdata.long_int;

import java.util.function.LongToIntFunction;

public class ToInt implements LongToIntFunction{
    @Override
    public int applyAsInt(long value) {
        return (int) (value % Integer.MAX_VALUE);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy