Types
Last updated
Was this helpful?
Last updated
Was this helpful?
Solidity is a statically typed language, which means that the type of each variable (state and local) needs to be specified. Solidity provides several elementary types which can be combined to form complex types.
In addition, types can interact with each other in expressions containing operators. For a quick reference of the various operators, see .
The concept of “undefined” or “null” values does not exist in Solidity, but newly declared variables always have a dependent on its type. To handle any unexpected values, you should use the to revert the whole transaction, or return a tuple with a second bool value denoting success.
The following types are also called value types because variables of these types will always be passed by value, i.e. they are always copied when they are used as function arguments or in assignments.
bool
: The possible values are constants true
and false
.
Operators:
!
(logical negation)
&&
(logical conjunction, “and”)
||
(logical disjunction, “or”)
==
(equality)
!=
(inequality)
The operators ||
and &&
apply the common short-circuiting rules. This means that in the expression f(x) || g(y)
, if f(x)
evaluates to true
, g(y)
will not be evaluated even if it may have side-effects.
int
/ uint
: Signed and unsigned integers of various sizes. Keywords uint8
to uint256
in steps of 8
(unsigned of 8 up to 256 bits) and int8
to int256
. uint
and int
are aliases for uint256
and int256
, respectively.
Operators:
Comparisons: <=
, <
, ==
, !=
, >=
, >
(evaluate to bool
)
Bit operators: &
, |
, ^
(bitwise exclusive or), ~
(bitwise negation)
Shift operators: <<
(left shift), >>
(right shift)
Arithmetic operators: +
, -
, unary -
, *
, /
, %
(modulo), **
(exponentiation)
Comparisons
The value of a comparison is the one obtained by comparing the integer value.
Bit operations
Bit operations are performed on the two’s complement representation of the number. This means that, for example ~int256(0) == int256(-1)
.
Shifts
The result of a shift operation has the type of the left operand. The expression x << y
is equivalent to x * 2**y
, and, for positive integers, x >> y
is equivalent to x / 2**y
. For negative x
, x >> y
is equivalent to dividing by a power of 2
while rounding down (towards negative infinity). Shifting by a negative amount throws a runtime exception.
Before version 0.5.0
a right shift x >> y
for negative x
was equivalent to x / 2**y
, i.e. right shifts used rounding towards zero instead of rounding towards negative infinity.
Addition, Subtraction and Multiplication
Addition, subtraction and multiplication have the usual semantics. They wrap in two’s complement representation, meaning that for example uint256(0) - uint256(1) == 2**256 - 1
. You have to take these overflows into account when designing safe smart contracts.
The expression -x
is equivalent to (T(0) - x)
where T
is the type of x
. This means that -x
will not be negative if the type of x
is an unsigned integer type. Also, -x
can be positive if x
is negative. There is another caveat also resulting from two’s complement representation:
This means that even if a number is negative, you cannot assume that its negation will be positive.
Division
Since the type of the result of an operation is always the type of one of the operands, division on integers always results in an integer. In Solidity, division rounds towards zero. This mean that int256(-5) / int256(2) == int256(-2)
.
Note that in contrast, division on literals results in fractional values of arbitrary precision.
Modulo
The modulo operation a % n
yields the remainder r
after the division of the operand a
by the operand n
, where q = int(a / n)
and r = a - (n * q)
. This means that modulo results in the same sign as its left operand (or zero) and a % n == -(abs(a) % n)
holds for negative a
:
int256(5) % int256(2) == int256(1)
int256(5) % int256(-2) == int256(1)
int256(-5) % int256(2) == int256(-1)
int256(-5) % int256(-2) == int256(-1)
Exponentiation
Exponentiation is only available for unsigned types. Please take care that the types you are using are large enough to hold the result and prepare for potential wrapping behaviour.
Fixed point numbers are not fully supported by Solidity yet. They can be declared, but cannot be assigned to or from.
fixed
/ ufixed
: Signed and unsigned fixed point number of various sizes. Keywords ufixedMxN
and fixedMxN
, where M
represents the number of bits taken by the type and N
represents how many decimal points are available. M
must be divisible by 8 and goes from 8 to 256 bits. N
must be between 0 and 80, inclusive. ufixed
and fixed
are aliases for ufixed128x18
and fixed128x18
, respectively.
Operators:
Comparisons: <=
, <
, ==
, !=
, >=
, >
(evaluate to bool
)
Arithmetic operators: +
, -
, unary -
, *
, /
, %
(modulo)
The address type comes in two flavours, which are largely identical:
address
: Holds a 20 byte value (size of an Ethereum address).
address payable
: Same asaddress
, but with the additional memberstransfer
andsend
.
The idea behind this distinction is that address payable
is an address you can send Ether to, while a plain address
cannot be sent Ether.
Type conversions:
Implicit conversions from address payable
to address
are allowed, whereas conversions from address
to address payable
are not possible (the only way to perform such a conversion is by using an intermediate conversion to uint160
).
Address literals can be implicitly converted to address payable
.
Explicit conversions to and from address
are allowed for integers, integer literals, bytes20
and contract types with the following caveat: Conversions of the form address payable(x)
are not allowed. Instead the result of a conversion of the form address(x)
has the type address payable
, if x
is of integer or fixed bytes type, a literal or a contract with a payable fallback function. If x
is a contract without payable fallback function, then address(x)
will be of type address
. In external function signatures address
is used for both the address
and the address payable
type.
Operators:
<=
, <
, ==
, !=
, >=
and >
If you convert a type that uses a larger byte size to an address
, for example bytes32
, then the address
is truncated. To reduce conversion ambiguity version 0.4.24 and higher of the compiler force you make the truncation explicit in the conversion. Take for example the address 0x111122223333444455556666777788889999AAAABBBBCCCCDDDDEEEEFFFFCCCC
.
You can use address(uint160(bytes20(b)))
, which results in 0x111122223333444455556666777788889999aAaa
, or you can use address(uint160(uint256(b)))
, which results in 0x777788889999AaAAbBbbCcccddDdeeeEfFFfCcCc
.
Members of Addresses
balance
and transfer
It is possible to query the balance of an address using the property balance
and to send Ether (in units of wei) to a payable address using the transfer
function:
The transfer
function fails if the balance of the current contract is not large enough or if the Ether transfer is rejected by the receiving account. The transfer
function reverts on failure.
send
Send is the low-level counterpart of transfer
. If the execution fails, the current contract will not stop with an exception, but send
will return false
.
There are some dangers in using send
: The transfer fails if the call stack depth is at 1024 (this can always be forced by the caller) and it also fails if the recipient runs out of gas. So in order to make safe Ether transfers, always check the return value of send
, use transfer
or even better: use a pattern where the recipient withdraws the money.
call
, delegatecall
and staticcall
In order to interface with contracts that do not adhere to the ABI, or to get more direct control over the encoding, the functions call
, delegatecall
and staticcall
are provided. They all take a single bytes memory
parameter and return the success condition (as a bool
) and the returned data (bytes memory
). The functions abi.encode
, abi.encodePacked
, abi.encodeWithSelector
and abi.encodeWithSignature
can be used to encode structured data.
Example:
All these functions are low-level functions and should be used with care. Specifically, any unknown contract might be malicious and if you call it, you hand over control to that contract which could in turn call back into your contract, so be prepared for changes to your state variables when the call returns. The regular way to interact with other contracts is to call a function on a contract object (x.f()
).
It is possible to adjust the supplied gas with the .gas()
modifier:
Similarly, the supplied Ether value can be controlled too:
Lastly, these modifiers can be combined. Their order does not matter:
In a similar way, the function delegatecall
can be used: the difference is that only the code of the given address is used, all other aspects (storage, balance, …) are taken from the current contract. The purpose of delegatecall
is to use library code which is stored in another contract. The user has to ensure that the layout of storage in both contracts is suitable for delegatecall to be used.
Explicit conversion to and from the address payable
type is only possible if the contract type has a payable fallback function. The conversion is still performed using address(x)
and not using address payable(x)
. You can find more information in the section about the address type.
Contracts do not support any operators.
The members of contract types are the external functions of the contract including public state variables.
The value types bytes1
, bytes2
, bytes3
, …, bytes32
hold a sequence of bytes from one to up to 32. byte
is an alias for bytes1
.
Operators:
Comparisons: <=
, <
, ==
, !=
, >=
, >
(evaluate to bool
)
Bit operators: &
, |
, ^
(bitwise exclusive or), ~
(bitwise negation)
Shift operators: <<
(left shift), >>
(right shift)
Index access: If x
is of type bytesI
, then x[k]
for 0 <= k < I
returns the k
th byte (read-only).
The shifting operator works with any integer type as right operand (but returns the type of the left operand), which denotes the number of bits to shift by. Shifting by a negative amount causes a runtime exception.
Members:
.length
yields the fixed length of the byte array (read-only).
bytes
:Dynamically-sized byte array, see Arrays. Not a value-type!string
:Dynamically-sized UTF-8-encoded string, see Arrays. Not a value-type!
Hexadecimal literals that pass the address checksum test, for example 0xdCad3a6d3569DF655070DEd06cb7A1b2Ccd1D3AF
are of address payable
type. Hexadecimal literals that are between 39 and 41 digits long and do not pass the checksum test produce a warning and are treated as regular rational number literals.
Integer literals are formed from a sequence of numbers in the range 0-9. They are interpreted as decimals. For example, 69
means sixty nine. Octal literals do not exist in Solidity and leading zeros are invalid.
Decimal fraction literals are formed by a .
with at least one number on one side. Examples include 1.
, .1
and 1.3
.
Scientific notation is also supported, where the base can have fractions, while the exponent cannot. Examples include 2e10
, -2e10
, 2e-10
, 2.5e1
.
Underscores can be used to separate the digits of a numeric literal to aid readability. For example, decimal 123_000
, hexadecimal 0x2eff_abde
, scientific decimal notation 1_2e345_678
are all valid. Underscores are only allowed between two digits and only one consecutive underscore is allowed. There is no additional semantic meaning added to a number literal containing underscores, the underscores are ignored.
Number literal expressions retain arbitrary precision until they are converted to a non-literal type (i.e. by using them together with a non-literal expression or by explicit conversion). This means that computations do not overflow and divisions do not truncate in number literal expressions.
For example, (2**800 + 1) - 2**800
results in the constant 1
(of type uint8
) although intermediate results would not even fit the machine word size. Furthermore, .5 * 8
results in the integer 4
(although non-integers were used in between).
Any operator that can be applied to integers can also be applied to number literal expressions as long as the operands are integers. If any of the two is fractional, bit operations are disallowed and exponentiation is disallowed if the exponent is fractional (because that might result in a non-rational number).
Division on integer literals used to truncate in Solidity prior to version 0.4.0, but it now converts into a rational number, i.e. 5 / 2
is not equal to 2
, but to 2.5
.
String literals are written with either double or single-quotes ("foo"
or 'bar'
). They do not imply trailing zeroes as in C; "foo"
represents three bytes, not four. As with integer literals, their type can vary, but they are implicitly convertible to bytes1
, …, bytes32
, if they fit, to bytes
and to string
.
For example, with bytes32 samevar = "stringliteral"
the string literal is interpreted in its raw byte form when assigned to a bytes32
type.
String literals support the following escape characters:
\
(escapes an actual newline)
\\
(backslash)
\'
(single quote)
\"
(double quote)
\b
(backspace)
\f
(form feed)
\n
(newline)
\r
(carriage return)
\t
(tab)
\v
(vertical tab)
\xNN
(hex escape, see below)
\uNNNN
(unicode escape, see below)
\xNN
takes a hex value and inserts the appropriate byte, while \uNNNN
takes a Unicode codepoint and inserts an UTF-8 sequence.
The string in the following example has a length of ten bytes. It starts with a newline byte, followed by a double quote, a single quote a backslash character and then (without separator) the character sequence abcdef
.
Any unicode line terminator which is not a newline (i.e. LF, VF, FF, CR, NEL, LS, PS) is considered to terminate the string literal. Newline only terminates the string literal if it is not preceded by a \
.
Hexadecimal literals are prefixed with the keyword hex
and are enclosed in double or single-quotes (hex"001122FF"
). Their content must be a hexadecimal string and their value will be the binary representation of those values.
Hexadecimal literals behave like string literals and have the same convertibility restrictions.
Enums are one way to create a user-defined type in Solidity. They are explicitly convertible to and from all integer types but implicit conversion is not allowed. The explicit conversion from integer checks at runtime that the value lies inside the range of the enum and causes a failing assert otherwise. Enums needs at least one member.
The data representation is the same as for enums in C: The options are represented by subsequent unsigned integer values starting from 0
.
Function types are the types of functions. Variables of function type can be assigned from functions and function parameters of function type can be used to pass functions to and return functions from function calls. Function types come in two flavours - internal and external functions:
Internal functions can only be called inside the current contract (more specifically, inside the current code unit, which also includes internal library functions and inherited functions) because they cannot be executed outside of the context of the current contract. Calling an internal function is realized by jumping to its entry label, just like when calling a function of the current contract internally.
External functions consist of an address and a function signature and they can be passed via and returned from external function calls.
Function types are notated as follows:
In contrast to the parameter types, the return types cannot be empty - if the function type should not return anything, the whole returns ( types>)
part has to be omitted.
By default, function types are internal, so the internal
keyword can be omitted. Note that this only applies to function types. Visibility has to be specified explicitly for functions defined in contracts, they do not have a default.
Conversions:
A value of external function type can be explicitly converted to address
resulting in the address of the contract of the function.
A function type A
is implicitly convertible to a function type B
if and only if their parameter types are identical, their return types are identical, their internal/external property is identical and the state mutability of A
is not more restrictive than the state mutability of B
. In particular:
pure
functions can be converted toview
andnon-payable
functions
view
functions can be converted tonon-payable
functions
payable
functions can be converted tonon-payable
functions
No other conversions between function types are possible.
The rule about payable
and non-payable
might be a little confusing, but in essence, if a function is payable
, this means that it also accepts a payment of zero Ether, so it also is non-payable
. On the other hand, a non-payable
function will reject Ether sent to it, so non-payable
functions cannot be converted to payable
functions.
If a function type variable is not initialised, calling it results in a failed assertion. The same happens if you call a function after using delete
on it.
If external function types are used outside of the context of Solidity, they are treated as the function
type, which encodes the address followed by the function identifier together in a single bytes24
type.
Note that public functions of the current contract can be used both as an internal and as an external function. To use f
as an internal function, just use f
, if you want to use its external form, use this.f
.
Members:
Example that shows how to use internal function types:
Another example that uses external function types:
Values of reference type can be modified through multiple different names. Contrast this with value types where you get an independent copy whenever a variable of value type is used. Because of that, reference types have to be handled more carefully than value types. Currently, reference types comprise structs, arrays and mappings. If you use a reference type, you always have to explicitly provide the data area where the type is stored: memory
(whose lifetime is limited to a function call), storage
(the location where the state variables are stored) or calldata
(special data location that contains the function arguments, only available for external function call parameters).
An assignment or type conversion that changes the data location will always incur an automatic copy operation, while assignments inside the same data location only copy in some cases for storage types.
Every reference type, i.e. arrays and structs, has an additional annotation, the “data location”, about where it is stored. There are three data locations: memory
, storage
and calldata
. Calldata is only valid for parameters of external contract functions and is required for this type of parameter. Calldata is a non-modifiable, non-persistent area where function arguments are stored, and behaves mostly like memory.
Data locations are not only relevant for persistency of data, but also for the semantics of assignments: assignments between storage and memory (or from calldata) always create an independent copy. Assignments from memory to memory only create references. This means that changes to one memory variable are also visible in all other memory variables that refer to the same data. Assignments from storage to a local storage variables also only assign a reference. In contrast, all other assignments to storage always copy. Examples for this case are assignments to state variables or to members of local variables of storage struct type, even if the local variable itself is just a reference.
An array of fixed size k
and element type T
is written as T[k]
, an array of dynamic size as T[]
. As an example, an array of 5 dynamic arrays of uint
is uint[][5]
(note that the notation is reversed when compared to some other languages). To access the second uint in the third dynamic array, you use x[2][1]
(indices are zero-based and access works in the opposite way of the declaration, i.e. x[2]
shaves off one level in the type from the right).
Accessing an array past its end causes a revert. If you want to add new elements, you have to use .push()
or increase the .length
member (see below).
Variables of type bytes
and string
are special arrays. A bytes
is similar to byte[]
, but it is packed tightly in calldata and memory. string
is equal to bytes
but does not allow length or index access. So bytes
should always be preferred over byte[]
because it is cheaper. As a rule of thumb, use bytes
for arbitrary-length raw byte data and string
for arbitrary-length string (UTF-8) data. If you can limit the length to a certain number of bytes, always use one of bytes1
to bytes32
because they are much cheaper.
Allocating Memory Arrays
You can use the new
keyword to create arrays with a runtime-dependent length in memory. As opposed to storage arrays, it is not possible to resize memory arrays (e.g. by assigning to the .length
member). You either have to calculate the required size in advance or create a new memory array and copy every element.
Array Literals
An array literal is a comma-separated list of one or more expressions, enclosed in square brackets ([...]
). For example [1, a, f(3)]
. There must be a common type all elements can be implicitly converted to. This is the elementary type of the array.
Array literals are always statically-sized memory arrays.
In the example below, the type of [1, 2, 3]
is uint8[3] memory
. Because the type of each of these constants is uint8
, if you want the result to be a uint[3] memory
type, you need to convert the first element to uint
.
Fixed size memory arrays cannot be assigned to dynamically-sized memory arrays, i.e. the following is not possible:
It is planned to remove this restriction in the future, but it creates some complications because of how arrays are passed in the ABI.
Members
length:Arrays have a length
member that contains their number of elements. The length of memory arrays is fixed (but dynamic, i.e. it can depend on runtime parameters) once they are created. For dynamically-sized arrays (only available for storage), this member can be assigned to resize the array. Accessing elements outside the current length does not automatically resize the array and instead causes a failing assertion. Increasing the length adds new zero-initialised elements to the array. Reducing the length performs an implicit :ref:delete
on each of the removed elements. If you try to resize a non-dynamic array that isn’t in storage, you receive a Value must be an lvalue
error.push:Dynamic storage arrays and bytes
(not string
) have a member function called push
that you can use to append an element at the end of the array. The element will be zero-initialised. The function returns the new length.pop:Dynamic storage arrays and bytes
(not string
) have a member function called pop
that you can use to remove an element from the end of the array. This also implicitly calls :ref:delete
on the removed element.
If you use .length--
on an empty array, it causes an underflow and thus sets the length to 2**256-1
.
Solidity provides a way to define new types in the form of structs, which is shown in the following example:
The contract does not provide the full functionality of a crowdfunding contract, but it contains the basic concepts necessary to understand structs. Struct types can be used inside mappings and arrays and they can itself contain mappings and arrays.
It is not possible for a struct to contain a member of its own type, although the struct itself can be the value type of a mapping member or it can contain a dynamically-sized array of its type. This restriction is necessary, as the size of the struct has to be finite.
Note how in all the functions, a struct type is assigned to a local variable with data location storage
. This does not copy the struct but only stores a reference so that assignments to members of the local variable actually write to the state.
Of course, you can also directly access the members of the struct without assigning it to a local variable, as in campaigns[campaignID].amount = 0
.
You declare mapping types with the syntax mapping(_KeyType => _ValueType)
. The _KeyType
can be any elementary type. This means it can be any of the built-in value types plus bytes
and string
. User-defined or complex types like contract types, enums, mappings, structs and any array type apart from bytes
and string
are not allowed. _ValueType
can be any type, including mappings.
Because of this, mappings do not have a length or a concept of a key or value being set.
Mappings can only have a data location of storage
and thus are allowed for state variables, as storage reference types in functions, or as parameters for library functions. They cannot be used as parameters or return parameters of contract functions that are publicly visible.
If a
is an LValue (i.e. a variable or something that can be assigned to), the following operators are available as shorthands:
a += e
is equivalent to a = a + e
. The operators -=
, *=
, /=
, %=
, |=
, &=
and ^=
are defined accordingly. a++
and a--
are equivalent to a += 1
/ a -= 1
but the expression itself still has the previous value of a
. In contrast, --a
and ++a
have the same effect on a
but return the value after the change.
delete a
assigns the initial value for the type to a
. I.e. for integers it is equivalent to a = 0
, but it can also be used on arrays, where it assigns a dynamic array of length zero or a static array of the same length with all elements reset. For structs, it assigns a struct with all members reset. In other words, the value of a
after delete a
is the same as if a
would be declared without assignment, with the following caveat:
delete
has no effect on mappings (as the keys of mappings may be arbitrary and are generally unknown). So if you delete a struct, it will reset all members that are not mappings and also recurse into the members unless they are mappings. However, individual keys and what they map to can be deleted: If a
is a mapping, then delete a[x]
will delete the value stored at x
.
It is important to note that delete a
really behaves like an assignment to a
, i.e. it stores a new object in a
. This distinction is visible when a
is reference variable: It will only reset a
itself, not the value it referred to previously.
If an operator is applied to different types, the compiler tries to implicitly convert one of the operands to the type of the other (the same is true for assignments). In general, an implicit conversion between value-types is possible if it makes sense semantically and no information is lost: uint8
is convertible to uint16
and int128
to int256
, but int8
is not convertible to uint256
(because uint256
cannot hold e.g. -1
).
For more details, please consult the sections about the types themselves.
If the compiler does not allow implicit conversion but you know what you are doing, an explicit type conversion is sometimes possible. Note that this may give you some unexpected behaviour and allows you to bypass some security features of the compiler, so be sure to test that the result is what you want! Take the following example where you are converting a negative int8
to a uint
:
At the end of this code snippet, x
will have the value 0xfffff..fd
(64 hex characters), which is -3 in the two’s complement representation of 256 bits.
If an integer is explicitly converted to a smaller type, higher-order bits are cut off:
If an integer is explicitly converted to a larger type, it is padded on the left (i.e. at the higher order end). The result of the conversion will compare equal to the original integer.
uint16 a = 0x1234; uint32 b = uint32(a); // b will be 0x00001234 now assert(a == b);
Fixed-size bytes types behave differently during conversions. They can be thought of as sequences of individual bytes and converting to a smaller type will cut off the sequence:
If a fixed-size bytes type is explicitly converted to a larger type, it is padded on the right. Accessing the byte at a fixed index will result in the same value before and after the conversion (if the index is still in range):
Since integers and fixed-size byte arrays behave differently when truncating or padding, explicit conversions between integers and fixed-size byte arrays are only allowed, if both have the same size. If you want to convert between integers and fixed-size byte arrays of different size, you have to use intermediate conversions that make the desired truncation and padding rules explicit:
Decimal and hexadecimal number literals can be implicitly converted to any integer type that is large enough to represent it without truncation:
Decimal number literals cannot be implicitly converted to fixed-size byte arrays. Hexadecimal number literals can be, but only if the number of hex digits exactly fits the size of the bytes type. As an exception both decimal and hexadecimal literals which have a value of zero can be converted to any fixed-size bytes type:
String literals and hex string literals can be implicitly converted to fixed-size byte arrays, if their number of characters matches the size of the bytes type:
As described in Address Literals, hex literals of the correct size that pass the checksum test are of address
type. No other literals can be implicitly converted to the address
type.
Explicit conversions from bytes20
or any integer type to address
result in address payable
.
It might very well be that you do not need to care about the distinction between address
and address payable
and just use address
everywhere. For example, if you are using the , you can (and should) store the address itself as address
, because you invoke the transfer
function on msg.sender
, which is an address payable
.
For a quick reference of all members of address, see .
If x
is a contract address, its code (more specifically: its , if present) will be executed together with the transfer
call (this is a feature of the EVM and cannot be prevented). If that execution runs out of gas or fails in any way, the Ether transfer will be reverted and the current contract will stop with an exception.
Every defines its own type. You can implicitly convert contracts to contracts they inherit from. Contracts can be explicitly converted to and from all other contract types and the address
type.
You can also instantiate contracts (which means they are newly created). You can find more details in the section.
The data representation of a contract is identical to that of the address
type and this type is also used in the .
The mixed-case address checksum format is defined in .
Public (or external) functions also have a special member called selector
, which returns the :
Arrays can have a compile-time fixed size or they can be dynamic. The are few restrictions for the element, it can also be another array, a mapping or a struct. The general restrictions for types apply, though, in that mappings can only be used in storage and publicly-visible functions need parameters that are .
It is possible to mark arrays public
and have Solidity create a . The numeric index will become a required parameter for the getter.
You can think of mappings as , which are virtually initialised such that every possible key exists and is mapped to a value whose byte-representation is all zeros, a type’s . The similarity ends there, the key data is not stored in a mapping, only its keccak256
hash is used to look up the value.
You can mark variables of mapping type as public
and Solidity creates a for you. The _KeyType
becomes a parameter for the getter. If _ValueType
is a value type or a struct, the getter returns _ValueType
. If _ValueType
is an array or a mapping, the getter has one parameter for each _KeyType
, recursively. For example with a mapping:
Mappings are not iterable, but it is possible to implement a data structure on top of them. For an example, see .