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

package it.unimi.dsi.fastutil.bytes;

public final class ByteIterables
{
    private ByteIterables() {
    }
    
    public static long size(final ByteIterable iterable) {
        long c = 0L;
        for (final byte dummy : iterable) {
            ++c;
        }
        return c;
    }
}
