Sha256: 3fcfa0f269012bb6982ae509ccbd38414ee1c555294ae6ceb69018ecf545f2f9
Contents?: true
Size: 342 Bytes
Versions: 82
Compression:
Stored size: 342 Bytes
Contents
/// Given a list of poker hands, return a list of those hands which win. /// /// Note the type signature: this function should return _the same_ reference to /// the winning hand(s) as were passed in, not reconstructed strings which happen to be equal. pub fn winning_hands<'a>(_: &[&'a str]) -> Option<Vec<&'a str>> { unimplemented!() }
Version data entries
82 entries across 82 versions & 1 rubygems