diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2018-11-30 12:41:16 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2018-11-30 12:41:16 +0900 |
commit | e9cad17338196026836b555dd971ba84ed011a9d (patch) | |
tree | 8d3910263817ddbb8b1d32658db8ca881b85eb4a /doc | |
parent | ce3d4f8072b41fd5eb64807a3616c7b30f10436c (diff) | |
download | libsolv-e9cad17338196026836b555dd971ba84ed011a9d.tar.gz libsolv-e9cad17338196026836b555dd971ba84ed011a9d.tar.bz2 libsolv-e9cad17338196026836b555dd971ba84ed011a9d.zip |
Imported Upstream version 0.6.33upstream/0.6.33
Change-Id: I87909fa92d6ffc652ed1fd963141f2ea08ab4e2d
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/gen/libsolv-bindings.3 | 23 | ||||
-rw-r--r-- | doc/libsolv-bindings.txt | 11 |
2 files changed, 28 insertions, 6 deletions
diff --git a/doc/gen/libsolv-bindings.3 b/doc/gen/libsolv-bindings.3 index 7ea859f..a6534aa 100644 --- a/doc/gen/libsolv-bindings.3 +++ b/doc/gen/libsolv-bindings.3 @@ -2,12 +2,12 @@ .\" Title: Libsolv-Bindings .\" Author: [see the "Author" section] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 01/18/2018 +.\" Date: 02/28/2018 .\" Manual: LIBSOLV .\" Source: libsolv .\" Language: English .\" -.TH "LIBSOLV\-BINDINGS" "3" "01/18/2018" "libsolv" "LIBSOLV" +.TH "LIBSOLV\-BINDINGS" "3" "02/28/2018" "libsolv" "LIBSOLV" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -3167,7 +3167,7 @@ Back pointer to pool\&. .RS 4 .\} .nf -\fBint flags()\fR; +\fBint flags()\fR my \fI$flags\fR \fB=\fR \fI$sel\fR\fB\->flags()\fR; \fIflags\fR \fB=\fR \fIsel\fR\fB\&.flags()\fR \fIflags\fR \fB=\fR \fIsel\fR\fB\&.flags()\fR @@ -3182,7 +3182,7 @@ Return the result flags of the selection\&. The flags are a subset of the ones u .RS 4 .\} .nf -\fBbool isempty()\fR; +\fBbool isempty()\fR \fI$sel\fR\fB\->isempty()\fR \fIsel\fR\fB\&.isempty()\fR \fIsel\fR\fB\&.isempty?\fR @@ -3197,6 +3197,21 @@ Return true if the selection is empty, i\&.e\&. no package could be matched\&. .RS 4 .\} .nf +\fBSelection clone(int\fR \fIflags\fR \fB= 0)\fR +my \fI$cloned\fR \fB=\fR \fI$sel\fR\fB\->clone()\fR; +\fIcloned\fR \fB=\fR \fIsel\fR\fB\&.clone()\fR +\fIcloned\fR \fB=\fR \fIsel\fR\fB\&.clone()\fR +.fi +.if n \{\ +.RE +.\} +.sp +Return a copy of a selection\&. +.sp +.if n \{\ +.RS 4 +.\} +.nf \fBvoid filter(Selection *\fR\fIother\fR\fB)\fR \fI$sel\fR\fB\->filter(\fR\fI$other\fR\fB)\fR; \fIsel\fR\fB\&.filter(\fR\fIother\fR\fB)\fR diff --git a/doc/libsolv-bindings.txt b/doc/libsolv-bindings.txt index 0d336ce..1f6422f 100644 --- a/doc/libsolv-bindings.txt +++ b/doc/libsolv-bindings.txt @@ -1782,7 +1782,7 @@ Back pointer to pool. === METHODS === - int flags(); + int flags() my $flags = $sel->flags(); flags = sel.flags() flags = sel.flags() @@ -1795,13 +1795,20 @@ flags will either be SELECTION_NAME or SELECTION_PROVIDES depending if there was a package that matched the name or not. If there was no match at all, the flags will be zero. - bool isempty(); + bool isempty() $sel->isempty() sel.isempty() sel.isempty? Return true if the selection is empty, i.e. no package could be matched. + Selection clone(int flags = 0) + my $cloned = $sel->clone(); + cloned = sel.clone() + cloned = sel.clone() + +Return a copy of a selection. + void filter(Selection *other) $sel->filter($other); sel.filter(other) |