You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to utils::combn, iff a single integer is passed to icombinations or ipermutations, the iterator should return the combinations/permutations of the sequence. For example, the following should be equivalent:
Similar to
utils::combn
, iff a single integer is passed toicombinations
oripermutations
, the iterator should return the combinations/permutations of the sequence. For example, the following should be equivalent:icombinations(5, 2)
icombinations(1:5, 2)
Currently,
as.list(icombinations(5, 2))
returnslist()
.The text was updated successfully, but these errors were encountered: