Added `generate_true_false_matrix_from_list_of_strings`
A convenience function. It takes a string name and a list of strings, and
returns the true-false matrix built from those values.
generate_true_false_matrix_from_list_of_strings(
"burger_toppings",
["with_cheese", "with_ketchup", "with_mustard"]
)
is the equivalent of
burger_toppings = namedtuple(
"burger_toppings",
["with_cheese", "with_ketchup", "with_mustard"]
)
generate_true_false_matrix_from_namedtuple(burger_toppings)