You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A very common (perhaps most common) use for serialization is saving to a file. If the first argument is a string, it could be interpreted as a filename wlog.
serialize( filename::AbstractString, anything )= open(filename, "w") do ofile; serialize(ofile, anything); end;
deserialize( filename::AbstractString )= ( o=(); open(filename, "r") do ofile; o= deserialize(ofile); end; o );
The text was updated successfully, but these errors were encountered:
A very common (perhaps most common) use for serialization is saving to a file. If the first argument is a string, it could be interpreted as a filename wlog.
The text was updated successfully, but these errors were encountered: