// 
// Decompiled by Procyon v0.6.0
// 

package it.unimi.dsi.fastutil.bytes;

import it.unimi.dsi.fastutil.SafeMath;
import java.util.function.IntBinaryOperator;
import java.util.function.BinaryOperator;

@FunctionalInterface
public interface ByteBinaryOperator extends BinaryOperator<Byte>, IntBinaryOperator
{
    byte apply(final byte p0, final byte p1);
    
    @Deprecated
    default int applyAsInt(final int x, final int y) {
        return this.apply(SafeMath.safeIntToByte(x), SafeMath.safeIntToByte(y));
    }
    
    @Deprecated
    default Byte apply(final Byte x, final Byte y) {
        return this.apply((byte)x, (byte)y);
    }
}
