Package objd.lang

Source Code of objd.lang.Int

package objd.lang;

import objd.collection.Range;

public class Int {
    public static Range to(int a, int b) {
        return new Range(a, b, 1);
    }
}
TOP

Related Classes of objd.lang.Int

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.