set_nestable_mode#
- ivy.set_nestable_mode(mode)[source]#
Set the mode of whether to check if function inputs are ivy.Container.
Parameter#
- mode
boolean whether to check if function inputs are ivy.Container
Examples
>>> ivy.set_nestable_mode(False) >>> ivy.get_nestable_mode() False
>>> ivy.set_nestable_mode(True) >>> ivy.get_nestable_mode() True
- rtype:
None