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

org.lambda.utils.Mutable Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package org.lambda.utils;

import org.lambda.functions.Function1;

public class Mutable
{
  private T object;
  public Mutable(T object)
  {
    this.object = object;
  }
  public T get()
  {
    return object;
  }
  public T set(T object)
  {
    this.object = object;
    return object;
  }
  public T update(Function1 updater)
  {
    this.object = updater.call(this.object);
    return this.object;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy