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

org.aya.util.error.WithPos Maven / Gradle / Ivy

// Copyright (c) 2020-2021 Yinsen (Tesla) Zhang.
// Use of this source code is governed by the MIT license that can be found in the LICENSE.md file.
package org.aya.util.error;

import org.jetbrains.annotations.NotNull;

import java.util.function.Function;

public record WithPos(@NotNull SourcePos sourcePos, T data) {
  public  WithPos map(@NotNull Function mapper) {
    return new WithPos<>(sourcePos, mapper.apply(data));
  }
}