public MRoot(MRoot other) : this(other?.Context?.Data ?? FLSlice.Null, other?.IsMutable == true) { }
public static object AsObject(FLSlice fleeceData, bool mutableContainers = true) { using (var root = new MRoot(fleeceData, mutableContainers)) { return(root.AsObject()); } }
public MRoot(MRoot other) : this(other?.Context?.Data ?? FLSlice.Null, other?.Context != null ? other.Context.SharedKeys : null, other?.IsMutable == true) { }