The fill() function

The fill function is used to combine a gap object, to get the clash. It accepts a list representing the gap as parameter, and returns another list representing the clash

fill(clash: list) -> list

Here is a demonstration of it’s usage

import clasgap
gap = clashgap.fill([["sp", "h"], "am"])
print(gap)

stdout:

["spam", "ham"]

The gap() and fill() functions are inverse of each other. So gap(fill(x)) == x and fill(gap(y)) == y are both True, for any valid x and y

Note

The fill function currently only supports input list of length two