Higher Order Functions in Swift : iOS Interview Series#03

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

КОМЕНТАРІ • 14

  • @anweshannu2518
    @anweshannu2518 3 роки тому

    Thanks for the video expecting many more

  • @SandeepSingh-lg7bq
    @SandeepSingh-lg7bq 5 років тому

    Thanks Mayank for a very nice & precise explanation

    • @iosmayank
      @iosmayank  5 років тому +1

      Glad that you liked it :)

    • @SandeepSingh-lg7bq
      @SandeepSingh-lg7bq 5 років тому

      @@iosmayank Plz post some more Interview question videos, thanks in advance

    • @iosmayank
      @iosmayank  5 років тому +1

      @@SandeepSingh-lg7bq Sure, stay tuned :)

  • @bharadwajmanchalla2370
    @bharadwajmanchalla2370 5 років тому

    Nice video, was helpful thanks Mayank!

  • @ashikashettyheradi9213
    @ashikashettyheradi9213 5 років тому

    Quick and helpful.Thanks!

    • @iosmayank
      @iosmayank  5 років тому +1

      Glad that you liked it :)

  • @ubelakroft9469
    @ubelakroft9469 5 років тому +1

    This is clutch because its short and concise. Thanks!

    • @iosmayank
      @iosmayank  5 років тому

      Thanks @Ubela Kroft :)

  • @MandeepSingh-ly3jj
    @MandeepSingh-ly3jj 4 роки тому

    Bro its awesome explanation about Higher order function , I am all clear about it :))

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

      Hi Mandeep, I'm glad that you liked the video :) Stay tuned.

  • @harshkumarraj6896
    @harshkumarraj6896 3 роки тому

    let numbers : [Int] = [0,2,8,5,3]
    (a,b) -> Bool in
    print("a = \(a)")
    print("b = \(b)")
    print(a>b)
    return a>b
    }
    print(descOrder)
    }
    Why a[0] is showing 2 and a[1] shows 0 while using Bool in. Pls eloborate closure once. Thanks