Collection Operations | Transformation | map | zip : Kotlin Fundamentals Tutorial - Part 40

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

КОМЕНТАРІ • 13

  • @sheolikar007
    @sheolikar007 7 днів тому +1

    sir i like the video and give beautiful example for understanding thanks

  • @shaikfakhruzzaman5698
    @shaikfakhruzzaman5698 2 роки тому +1

    Anil deshapande ... Better than European and American tutors

    • @Codetutor-DemystifyCoding
      @Codetutor-DemystifyCoding  2 роки тому

      Thanks for the kind words. Feel free to explore other content on the channel. Hope you have subscribed.

  • @adiyogi-thefirstguru5144
    @adiyogi-thefirstguru5144 2 роки тому

    Sir, thanks for the videos... Please upload atleast one video in a week .

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

    hello sir i want 1 help me android app madhe webview ghetala ahe but je maze notification website var show hotat tya notification app madhe show hot nahi why sir kahi permission cha issue ahe ka please help me

    • @Codetutor-DemystifyCoding
      @Codetutor-DemystifyCoding  2 роки тому

      Sorry to disappoint you, but I don't know Marathi that well 😟. Mala Marathi aith nahi

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

      @@Codetutor-DemystifyCoding Hello sir I have taken a webview in android app but the notification is not coming in that webview but my website is getting notifications is there any solution. Do you have to give some permissions in the app?

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

    Hello sir I have taken a webview in android app but the notification is not coming in that webview but my website is getting notifications is there any solution. Do you have to give some permissions in the app?

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

      @Codetutor i am waiting for your reply sir

    • @Codetutor-DemystifyCoding
      @Codetutor-DemystifyCoding  2 роки тому

      May be the browser engine is not rendering the notification properly in mobile. Ideally it should work. Have you tried debugging the web view in Android.

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

      @@Codetutor-DemystifyCoding But when i open the browser that time notification show Properly but when i open the webview app that time i cant show notification yes i debug the app what was the actual issue found in that case how was i resolve it any permission required in the manifesto file

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

    val personList = mutableListOf()
    for(p in 1..5){
    Person("name_$p",p).also {
    personList.add(it)
    }
    }
    val updatedPerson = personList.map {
    it.name = "gautam"
    it
    }
    println("updatedPerson is => $updatedPerson")
    /*
    * map will change the entire list since list is mutable
    * */
    println("personList is => $personList")
    So here at the last line personList is getting changed. in the video you told that map will not change the original list but in my case it is getting change, can you please clear it? Thanks in advance.