formulae v0.5.0 NonRepeatedPermutations

Helper to calculate all the non repeated permutations of the list given.

The maximal allowed number of non repeated permutations is limited to 12.

Link to this section Summary

Functions

Calculates all non repeated permutations of an empty list, returning an empty list

Calculates all non repeated permutations of an empty list, returning an empty list

Calculates all non repeated permutations of a list having a single keyword element, returning the keyword wrapped into a list.

Calculates all non repeated permutations of a list of length 10.

Calculates all non repeated permutations of a list of length 11.

Calculates all non repeated permutations of a list of length 12.

Calculates all non repeated permutations of a list of length 2.

Calculates all non repeated permutations of a list of length 3.

Calculates all non repeated permutations of a list of length 4.

Calculates all non repeated permutations of a list of length 5.

Calculates all non repeated permutations of a list of length 6.

Calculates all non repeated permutations of a list of length 7.

Calculates all non repeated permutations of a list of length 8.

Calculates all non repeated permutations of a list of length 9.

Link to this section Functions

Link to this function

do_0()

do_0() :: []

Calculates all non repeated permutations of an empty list, returning an empty list

Link to this function

do_0(list)

do_0([]) :: []

Calculates all non repeated permutations of an empty list, returning an empty list

Link to this function

do_1(kw)

do_1(kw :: keyword()) :: [keyword()]

Calculates all non repeated permutations of a list having a single keyword element, returning the keyword wrapped into a list.

Link to this function

do_10(list)

do_10(list()) :: [list()]

Calculates all non repeated permutations of a list of length 10.

Link to this function

do_11(list)

do_11(list()) :: [list()]

Calculates all non repeated permutations of a list of length 11.

Link to this function

do_12(list)

do_12(list()) :: [list()]

Calculates all non repeated permutations of a list of length 12.

Link to this function

do_2(list)

do_2(list()) :: [list()]

Calculates all non repeated permutations of a list of length 2.

Link to this function

do_3(list)

do_3(list()) :: [list()]

Calculates all non repeated permutations of a list of length 3.

Link to this function

do_4(list)

do_4(list()) :: [list()]

Calculates all non repeated permutations of a list of length 4.

Link to this function

do_5(list)

do_5(list()) :: [list()]

Calculates all non repeated permutations of a list of length 5.

Link to this function

do_6(list)

do_6(list()) :: [list()]

Calculates all non repeated permutations of a list of length 6.

Link to this function

do_7(list)

do_7(list()) :: [list()]

Calculates all non repeated permutations of a list of length 7.

Link to this function

do_8(list)

do_8(list()) :: [list()]

Calculates all non repeated permutations of a list of length 8.

Link to this function

do_9(list)

do_9(list()) :: [list()]

Calculates all non repeated permutations of a list of length 9.