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

package it.unimi.dsi.fastutil.shorts;

public final class ShortIterables
{
    private ShortIterables() {
    }
    
    public static long size(final ShortIterable iterable) {
        long c = 0L;
        for (final short dummy : iterable) {
            ++c;
        }
        return c;
    }
}
