Skip to content

Instantly share code, notes, and snippets.

@player-03
Created December 8, 2016 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save player-03/578312bd66f3a36d396ffb815b605de5 to your computer and use it in GitHub Desktop.
Save player-03/578312bd66f3a36d396ffb815b605de5 to your computer and use it in GitHub Desktop.
Sort functions to pass to Array.sort().
class SortFunctions {
public static function alphabetical(a:String, b:String):Int {
if(a < b) {
return -1;
} else if(a > b) {
return 1;
} else {
return 0;
}
}
public static function reverseAlphabetical(a:String, b:String):Int {
if(a < b) {
return 1;
} else if(a > b) {
return -1;
} else {
return 0;
}
}
public static function intAscending(a:Int, b:Int):Int {
return a - b;
}
public static function intDescending(a:Int, b:Int):Int {
return b - a;
}
public static function floatAscending(a:Float, b:Float):Int {
return b == a ? 0 : (b > a ? -1 : 1);
}
public static function floatDescending(a:Float, b:Float):Int {
return b == a ? 0 : (b > a ? 1 : -1);
}
}
@player-03
Copy link
Author

The MIT License (MIT)

Copyright (c) 2016 Joseph Cloutier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment