using System;
using System.Collections.Generic;
namespace StardewModdingAPI
{
/// Encapsulates access and changes to dictionary content being read from a data file.
public interface IAssetDataForDictionary : IAssetData>
{
/*********
** Public methods
*********/
/// Add or replace an entry in the dictionary.
/// The entry key.
/// The entry value.
void Set(TKey key, TValue value);
/// Add or replace an entry in the dictionary.
/// The entry key.
/// A callback which accepts the current value and returns the new value.
void Set(TKey key, Func value);
/// Dynamically replace values in the dictionary.
/// A lambda which takes the current key and value for an entry, and returns the new value.
void Set(Func replacer);
}
}