diff options
author | Michael Schroeder <mls@suse.de> | 2013-08-21 11:41:17 +0200 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2013-08-21 11:41:17 +0200 |
commit | 2ac1f5a76a953d30c4179baab0510c9fd6ee4563 (patch) | |
tree | eee02441077f468c994e3650f71ed0668435caad /doc | |
parent | 72c4472e415ba2b4e13866a235492daf7503a585 (diff) | |
download | libsolv-2ac1f5a76a953d30c4179baab0510c9fd6ee4563.tar.gz libsolv-2ac1f5a76a953d30c4179baab0510c9fd6ee4563.tar.bz2 libsolv-2ac1f5a76a953d30c4179baab0510c9fd6ee4563.zip |
add unset() method for solvables
Diffstat (limited to 'doc')
-rw-r--r-- | doc/libsolv-bindings.3 | 21 | ||||
-rw-r--r-- | doc/libsolv-bindings.txt | 7 |
2 files changed, 25 insertions, 3 deletions
diff --git a/doc/libsolv-bindings.3 b/doc/libsolv-bindings.3 index b68ec62..77e64c1 100644 --- a/doc/libsolv-bindings.3 +++ b/doc/libsolv-bindings.3 @@ -1,13 +1,13 @@ '\" t .\" Title: Libsolv-Bindings .\" Author: [see the "Author" section] -.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 07/02/2013 +.\" Generator: DocBook XSL Stylesheets v1.78.0 <http://docbook.sf.net/> +.\" Date: 08/21/2013 .\" Manual: LIBSOLV .\" Source: libsolv .\" Language: English .\" -.TH "LIBSOLV\-BINDINGS" "3" "07/02/2013" "libsolv" "LIBSOLV" +.TH "LIBSOLV\-BINDINGS" "3" "08/21/2013" "libsolv" "LIBSOLV" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -2291,6 +2291,21 @@ Add a new dependency to the attributes stored in keyname\&. .RS 4 .\} .nf +\fBvoid unset(Id\fR \fIkeyname\fR\fB)\fR; +\fI$solvable\fR\fB\->unset(\fR\fI$keyname\fR\fB)\fR; +\fIsolvable\fR\fB\&.unset(\fR\fIkeyname\fR\fB)\fR +\fIsolvable\fR\fB\&.unset(\fR\fIkeyname\fR\fB)\fR +.fi +.if n \{\ +.RE +.\} +.sp +Delete data stored for the specific keyname\&. +.sp +.if n \{\ +.RS 4 +.\} +.nf \fBbool installable()\fR; \fI$solvable\fR\fB\->installable()\fR \fIsolvable\fR\fB\&.installable()\fR diff --git a/doc/libsolv-bindings.txt b/doc/libsolv-bindings.txt index 1449bba..062761f 100644 --- a/doc/libsolv-bindings.txt +++ b/doc/libsolv-bindings.txt @@ -1284,6 +1284,13 @@ spawning multiple DVDs). Add a new dependency to the attributes stored in keyname. + void unset(Id keyname); + $solvable->unset($keyname); + solvable.unset(keyname) + solvable.unset(keyname) + +Delete data stored for the specific keyname. + bool installable(); $solvable->installable() solvable.installable() |