All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.apollographql.apollo.api.ImmutableMapBuilder.kt Maven / Gradle / Ivy

The newest version!
package com.apollographql.apollo.api

/**
 * A helper class to make it easier to build Maps from the java codegen
 */
class ImmutableMapBuilder {
  private val map: MutableMap = mutableMapOf()

  fun put(key: K, value: V) = apply {
    map[key] = value
  }

  fun build(): Map {
    return map
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy