Swift - Higher Order Function: Filter, Reduce, Map, CompactMap

Поділитися
Вставка
  • Опубліковано 29 гру 2024

КОМЕНТАРІ • 5

  • @jethroaseoche1849
    @jethroaseoche1849 4 роки тому

    This a hot topic right now, thanks! I really needed this one!

  • @geoffrimmer9955
    @geoffrimmer9955 4 роки тому +1

    In your filteredArray, even if you do not want to use $0, your can use filter() in a more compact way: let filteredArray = nameArray.filter { name in name == "Tom" }

    • @codingwithenrique2674
      @codingwithenrique2674  4 роки тому

      Absolutely! I'm used to using a shorthand argument, but you can definitely do it that way.

  • @0XIIIIII
    @0XIIIIII 4 роки тому

    Thank you so much Man!

  • @rahuljamba5846
    @rahuljamba5846 2 роки тому

    Great !!