• Applies the function aFun to each element of the list aList

    Parameters

    • aList: List<any>

      the list to consider

    • aFun: ((aValue: any) => void)

      a function applied to each element of aList

        • (aValue): void
        • Parameters

          • aValue: any

          Returns void

    Returns void