Skip to content

Commit

Permalink
Fix: Failed to auto complete the data type 'BMLayerCollection' correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Oct 31, 2024
1 parent c456714 commit 67a0e73
Showing 1 changed file with 39 additions and 8 deletions.
47 changes: 39 additions & 8 deletions src/mods/common/analyzer/append/bmesh.types.mod.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,33 @@
:rtype: int
:mod-option rtype: skip-refine

.. class:: BMLoopSeq

.. method:: __getitem__(key)

:type key: int
:mod-option arg key: skip-refine
:rtype: :class:`BMLoop`
:option function: overload

.. method:: __getitem__(key)

:type key: slice
:mod-option arg key: skip-refine
:rtype: tuple[:class:`BMLoop`, ...]
:mod-option rtype: skip-refine
:option function: overload

.. method:: __iter__()

:rtype: :class:`BMIter`\ [:class:`BMLoop`]
:mod-option rtype: skip-refine

.. method:: __len__()

:rtype: int
:mod-option rtype: skip-refine

.. class:: BMIter

:generic-types: _GenericType1
Expand All @@ -139,92 +166,96 @@

.. class:: BMVert

:generic-types: _GenericType1

.. method:: __getitem__(key)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine
:rtype: _GenericType1
:mod-option rtype: skip-refine

.. method:: __setitem__(key, value)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine
:type value: _GenericType1
:mod-option arg value: skip-refine

.. method:: __delitem__(key)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine

.. class:: BMEdge

:generic-types: _GenericType1

.. method:: __getitem__(key)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine
:rtype: _GenericType1
:mod-option rtype: skip-refine

.. method:: __setitem__(key, value)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine
:type value: _GenericType1
:mod-option arg value: skip-refine

.. method:: __delitem__(key)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine

.. class:: BMFace

:generic-types: _GenericType1

.. method:: __getitem__(key)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine
:rtype: _GenericType1
:mod-option rtype: skip-refine

.. method:: __setitem__(key, value)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine
:type value: _GenericType1
:mod-option arg value: skip-refine

.. method:: __delitem__(key)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine

.. class:: BMLoop

:generic-types: _GenericType1

.. method:: __getitem__(key)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine
:rtype: _GenericType1
:mod-option rtype: skip-refine

.. method:: __setitem__(key, value)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine
:type value: _GenericType1
:mod-option arg value: skip-refine

.. method:: __delitem__(key)

:generic-types: _GenericType1
:type key: :class:`BMLayerItem`\ [_GenericType1]
:mod-option arg key: skip-refine

0 comments on commit 67a0e73

Please sign in to comment.