TicTacToe - 0.1.0

Logic.Extra

Description

Some generic helper definitions.

Definitions

concat : List StringStringSource#

Concatenates a list of strings concat (("a" :: nil) :: "b" :: nil) evaluates to "a" :: "b" :: nil

surround : StringList StringList StringSource#

It inserts the first String at the beginning, in between, and at the end of the second list

intercalate : StringList StringStringSource#

It inserts the first String in between the Strings in the second list and concatenates the result