Converts a readonly value to into a mutable one but omits validation for the
purposes of performance
namespace HH\Readonly;
function as_mut_without_validation<T>(
T $x,
): T;
This function takes advantage of non-enforcement of readonly is SystemLib
and is not safe.
Parameters
Returns