Report on Conflicts Among Databases

DESCRIPTION:
This functions checks a specified portion of the search list for items that apear more than once.

USAGE:
conflicts(where=, detail=FALSE)

OPTIONAL ARGUMENTS:
where:
which elements of the search list should be included in the search. By default, the entire search list is used.
detail:
should the details of the conflicts be returned. (See below.)

VALUE:
By default, a character vector of the names of any objects appearing more than once in the databases searched for conflicts. If detail is TRUE, returns a list, with one element for each of the databases. Each element of the list gives the names of objects in the corresponding database that are in conflict with one or more of the other databases. See the example below for getting the short form from the detailed.

SEE ALSO:
masked , find .

EXAMPLES:
  myconf <- conflicts(1:3,T)
  myconf
$"./.Data":
[1] "TTT"       "last.dump"

$"/usr/ns/library/statistics/.Data": [1] "TTT" "last.dump"

$"/usr/ns/s/.Functions": character(0)

unique(unlist(myconf)) # equivalent to conflicts(1:3) [1] "TTT" "last.dump"