Skip to content
View edgardobarriam's full-sized avatar
🚲
🚲
  • Deloitte
  • Chile

Highlights

  • Pro
Block or Report

Block or report edgardobarriam

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Examples of Kotlin collections and t... Examples of Kotlin collections and the different operations we can do with them.
    1
    /* 
    2
        Examples taken from the book "Kotlin for Android Developers" by Antonio Leiva (Chapter 18) 
    3
        https://antonioleiva.com/kotlin-android-developers/
    4
    */
    5
    
                  
  2. Examples on Kotlin nullity Examples on Kotlin nullity
    1
    
                  
    2
      /* Kotlin makes use of question marks "?" to identify nullable types.
    3
         This means that if a variable can be null, we have to deal with it in some way, otherwise
    4
         it won't compile. */
    5
    
                  
  3. KotlinFlowControlAndRangesExamples.kt KotlinFlowControlAndRangesExamples.kt
    1
    
                  
    2
        /* "If" expression */
    3
    
                  
    4
        // We can use "if" as usual:
    5
        val x = 4