ForDictKeysAndValues class¶
This page explains the ForDictKeysAndValues
class.
Before reading on, maybe it is helpful to read the following page (the apysc uses this class for the same reason for each data type):
What class is this?¶
The ForDictKeysAndValues
class is the for-loop class.
This interface returns Dictionary
’s key and value in a loop.
Basic usage¶
This class requires using the with
-statement.
The as
-keyword value becomes a Dictionary
’s key and value.
Also, this class requires the dict_key_type
and dict_value_type
arguments to specify types of Dictionary
’s key and value types.
The dict_key_type
only accepts a hashable apysc type, such as the String
, Int
, Number
, and Boolean
.
Similarly, the dict_value_type
only accepts an apysc type, such as the String
, Int
, or Rectangle
.
import apysc as ap
ap.Stage(
background_color=ap.Color("#333"),
stage_width=250,
stage_height=300,
)
dict_: ap.Dictionary[ap.Number, ap.Number] = ap.Dictionary(
{
ap.Number(50): ap.Number(50),
ap.Number(100): ap.Number(125),
ap.Number(150): ap.Number(200),
}
)
with ap.ForDictKeysAndValues(
dict_=dict_,
dict_key_type=ap.Number,
dict_value_type=ap.Number,
) as (key, value):
ap.Rectangle(
x=key,
y=value,
width=50,
height=50,
fill_color=ap.Color("#0af"),
)
ap.save_overall_html(dest_dir_path="for_dict_keys_and_values_basic_usage_1/")
See also¶
Each branch instruction class’s scope variables reverting setting
Notes: This class also has the same arguments and behaves in the same way.
ForDictKeysAndValues API¶
Note: the document build script generates and updates this API document section automatically. Maybe this section is duplicated compared with previous sections.
[Interface signature] __init__(self, dict_: apysc._type.dictionary.Dictionary[~_DictKey, ~_DictValue], dict_key_type: Type[~_DictKey], dict_value_type: Type[~_DictValue], *, locals_: Union[Dict[str, Any], NoneType] = None, globals_: Union[Dict[str, Any], NoneType] = None, variable_name_suffix: str = '') -> None
[Interface summary]
The loop implementation class for the ap.Dictionary
keys and values.
[Parameters]
dict_
: Dictionary[_DictKey, _DictValue]A dictionary to iterate.
dict_key_type
: Type[_DictKey]A dictionary key type. This interface accepts hashable types, such as the
String
,Int
,Number
, orBoolean
.
dict_value_type
: Type[_DictValue]A dictionary value type. This interface accepts
InitializeWithBaseValueInterface
subclasses, such as theInt
,String
, orRectangle
.
locals_
: Optional[Dict[str, Any]], optionalCurrent scope’s local variables. Set locals() value to this argument. If specified, this interface reverts all local scope VariableNameMixIn variables (like Int, Sprite) at the end of a with-statement scope. This setting is useful when you don’t want to update each variable.
globals_
: Optional[Dict[str, Any]], optionalCurrent scope’s global variables. Set globals() value to this argument. This setting works the same way as the locals_ argument.
variable_name_suffix
: str, optionalA JavaScript variable name suffix string. This setting is sometimes useful for JavaScript debugging.
[Examples]
>>> import apysc as ap
>>> _ = ap.Stage(
... background_color=ap.Color("#333"), stage_width=250, stage_height=300
... )
>>> dict_: ap.Dictionary[ap.Number, ap.Number] = ap.Dictionary(
... {
... ap.Number(50): ap.Number(50),
... ap.Number(100): ap.Number(125),
... ap.Number(150): ap.Number(200),
... }
... )
>>> with ap.ForDictKeysAndValues(
... dict_=dict_,
... dict_key_type=ap.Number,
... dict_value_type=ap.Number,
... ) as (key, value):
... _ = ap.Rectangle(
... x=key, y=value, width=50, height=50, fill_color=ap.Color("#0af")
... )