We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With SICStus it is defined as equivalent to:
copy_term(X, Y) :- assert('copy of'(X)), retract('copy of'(Y)).
and thus doesn't copy attributes, whereas Scryer copies the attributes a la SWI (one of the few occasions where it favours the latter).
SICStus copy_term/2 is thus similar to copy_term/3.
Note SWI has...
duplicate_term/2 % copy attrs copy_term_nat/2 % doesn't copy attrs copy_term/2 % copy attrs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With SICStus it is defined as equivalent to:
and thus doesn't copy attributes, whereas Scryer copies the attributes a la SWI (one of the few occasions where it favours the latter).
SICStus copy_term/2 is thus similar to copy_term/3.
Note SWI has...
The text was updated successfully, but these errors were encountered: