In SWI-Prolog's settings library, is there a different between the following:
scope:set_setting(Key, Value)
andset_setting(scope:Key, Value)
scope:setting(Key, Value)
andsetting(scope:Key, Value)
:- scope:setting(Key, Type, Default, Doc)
and:- setting(scope:Key, Type, Default, Doc)
In addition: can scope
be anything but user
and a currently loaded module name?