1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3/* 4Nan.Common 1.2 5Common Operations 6nan_common.pl 7<http://julio.diegidio.name/Projects/Prolog/Download/Nan.Common-1.2.zip> 8 9Copyright 2012 J.P. Di Egidio 10All rights reserved. 11<http://julio.diegidio.name/Projects/Prolog/Nan.Common> 12 13Nan.Common is free software: you can redistribute it and/or modify 14it under the terms of the GNU General Public License as published by the 15Free Software Foundation, either version 3 of the License, or (at your 16option) any later version. 17 18Nan.Common is distributed in the hope that it will be useful, but 19WITHOUT ANY WARRANTY; without even the implied warranty of 20MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21General Public License for more details. 22 23You should have received a copy of the GNU General Public License along 24with Nan.Common. If not, see <http://www.gnu.org/licenses/>. 25 26As a special exception, if you link this library with other files, 27compiled with a Free Software compiler, to produce an executable, this 28library does not by itself cause the resulting executable to be covered 29by the GNU General Public License. This exception does not however 30invalidate any other reasons why the executable file might be covered by 31the GNU General Public License. 32 33Authors: 34J.P. Di Egidio - JDE - <mailto:julio@diegidio.name> 35 36History: 371.2.2012-11-11/JDE - Common: minor fixes to the docs. 381.0.2012-11-10/JDE - Common: created version 1.0. 39 40Written and tested in: 41SWI-Prolog 6.2.0 - <http://www.swi-prolog.org> 42*/ 43%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 44%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71:- module(nan_common, []). 72 73:- reexport([nan_validation]). 74 75%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 76%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Nan.Common 1.2: Common Operations
Nan.Common 1.2: Common Operations (nan_common)
This module is part of Nan.Common 1.2: Common Operations (nan_common) http://julio.diegidio.name/Projects/Prolog/Nan.Common
This module is a top-level reexporter for modules that provide common programming operations.
The modules currently provided are:
NOTE: It is possible to load the single modules if preferred. For example, to load the validation module enter
use_module(library(nan_validation))
, or similar.J.P
. Di EgidioJ.P
. Di Egidio