Sha256: 11d23c27c90f62133e77bf884a9646c6f5d4b760f5b0f43d0566d36b9d07ea74
Contents?: true
Size: 918 Bytes
Versions: 6
Compression:
Stored size: 918 Bytes
Contents
package com.github.jesg.dither; /* * #%L * dither * %% * Copyright (C) 2015 Jason Gowan * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ import java.util.Comparator; class ArrayLengthComparator implements Comparator<IndexArrayPair> { public int compare(IndexArrayPair arg1, IndexArrayPair arg2) { return -Integer.compare(arg1.getArr().length, arg2.getArr().length); } }
Version data entries
6 entries across 6 versions & 1 rubygems