Latest | 1.0.0 |
---|---|
Homepage | https://github.com/arahlf/cribbage-api-ios |
License | MIT |
Authors |
Summary
CribbageAPI is a simple utility for scoring hands in Cribbage.
Example Usage
#import "CribbageAPI.h"
NSArray *hand = @[FOUR_OF_SPADES, FIVE_OF_DIAMONDS, FIVE_OF_CLUBS, SIX_OF_HEARTS];
NSArray *scores = [CribbageAPI scoreHand:hand cut:TWO_OF_DIAMONDS crib:NO];
for (Score *score in scores) {
NSLog(@"%@ - %@", score.displayName, score.cards);
}
/*
Outputs:
Pair for 2 - (
"<Five of Diamonds>",
"<Five of Clubs>"
)
Double run of three for 6 - (
"<Four of Spades>",
"<Five of Diamonds>",
"<Five of Clubs>",
"<Six of Hearts>"
)
Fifteen for 2 - (
"<Four of Spades>",
"<Five of Diamonds>",
"<Six of Hearts>"
)
Fifteen for 2 - (
"<Four of Spades>",
"<Five of Clubs>",
"<Six of Hearts>"
)
*/
Latest podspec
{ "name": "cribbage-api-ios", "version": "1.0.0", "summary": "CribbageAPI is a simple utility for scoring hands in Cribbage.", "homepage": "https://github.com/arahlf/cribbage-api-ios", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "arahlf": "[email protected]" }, "source": { "git": "https://github.com/arahlf/cribbage-api-ios.git", "tag": "1.0.0" }, "source_files": "CribbageAPI/**/*.{h,m}", "requires_arc": true }
Sat, 05 Mar 2016 22:18:04 +0000