qiskit-documentation/docs/api/qiskit/0.29/qiskit.transpiler.PropertyS...

99 lines
3.3 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: PropertySet (v0.29)
description: API reference for qiskit.transpiler.PropertySet in qiskit v0.29
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.transpiler.PropertySet
---
# PropertySet
<Class id="qiskit.transpiler.PropertySet" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.18/qiskit/transpiler/propertyset.py" signature="PropertySet" modifiers="class">
Bases: `dict`
A default dictionary-like object
## Methods
<span id="qiskit-transpiler-propertyset-clear" />
### clear
<Function id="qiskit.transpiler.PropertySet.clear" signature="PropertySet.clear() → None. Remove all items from D." />
<span id="qiskit-transpiler-propertyset-copy" />
### copy
<Function id="qiskit.transpiler.PropertySet.copy" signature="PropertySet.copy() → a shallow copy of D" />
<span id="qiskit-transpiler-propertyset-fromkeys" />
### fromkeys
<Function id="qiskit.transpiler.PropertySet.fromkeys" signature="PropertySet.fromkeys(value=None, /)">
Create a new dictionary with keys from iterable and values set to value.
</Function>
<span id="qiskit-transpiler-propertyset-get" />
### get
<Function id="qiskit.transpiler.PropertySet.get" signature="PropertySet.get(key, default=None, /)">
Return the value for key if key is in the dictionary, else default.
</Function>
<span id="qiskit-transpiler-propertyset-items" />
### items
<Function id="qiskit.transpiler.PropertySet.items" signature="PropertySet.items() → a set-like object providing a view on Ds items" />
<span id="qiskit-transpiler-propertyset-keys" />
### keys
<Function id="qiskit.transpiler.PropertySet.keys" signature="PropertySet.keys() → a set-like object providing a view on Ds keys" />
<span id="qiskit-transpiler-propertyset-pop" />
### pop
<Function id="qiskit.transpiler.PropertySet.pop" signature="PropertySet.pop(k[, d]) → v, remove specified key and return the corresponding value.">
If key is not found, d is returned if given, otherwise KeyError is raised
</Function>
<span id="qiskit-transpiler-propertyset-popitem" />
### popitem
<Function id="qiskit.transpiler.PropertySet.popitem" signature="PropertySet.popitem() → (k, v), remove and return some (key, value) pair as a">
2-tuple; but raise KeyError if D is empty.
</Function>
<span id="qiskit-transpiler-propertyset-setdefault" />
### setdefault
<Function id="qiskit.transpiler.PropertySet.setdefault" signature="PropertySet.setdefault(key, default=None, /)">
Insert key with a value of default if key is not in the dictionary.
Return the value for key if key is in the dictionary, else default.
</Function>
<span id="qiskit-transpiler-propertyset-update" />
### update
<Function id="qiskit.transpiler.PropertySet.update" signature="PropertySet.update([E, ]**F) → None. Update D from dict/iterable E and F.">
If E is present and has a .keys() method, then does: for k in E: D\[k] = E\[k] If E is present and lacks a .keys() method, then does: for k, v in E: D\[k] = v In either case, this is followed by: for k in F: D\[k] = F\[k]
</Function>
<span id="qiskit-transpiler-propertyset-values" />
### values
<Function id="qiskit.transpiler.PropertySet.values" signature="PropertySet.values() → an object providing a view on Ds values" />
</Class>