namespace LC.Newtonsoft.Json.Linq
{
///
/// Specifies how JSON arrays are merged together.
///
public enum MergeArrayHandling
{
/// Concatenate arrays.
Concat = 0,
/// Union arrays, skipping items that already exist.
Union = 1,
/// Replace all array items.
Replace = 2,
/// Merge array items together, matched by index.
Merge = 3
}
}