get_common_elements ----------------------------------------- :funcelse:`improvelib.utils.`:funcname:`get_common_elements`:funcelse:`(list1, list2, verbose = False)` Return a list of elements that the provided lists have in common. Provided as a helper function. .. container:: utilhead: Parameters: **list1** : List First list. **list2** : List Second list. **verbose** : bool, optional Flag for verbosity. If True, info about computations is displayed. Default is False. .. container:: utilhead: Returns: **in_common** : List List of common elements. .. container:: utilhead: Example