classref: Sync with current master branch (705b7a0)

This commit is contained in:
Godot Organization
2024-05-31 13:54:35 +00:00
parent 32f1b6ea48
commit eacfba2716
835 changed files with 17350 additions and 17256 deletions

View File

@@ -67,7 +67,7 @@ Method Descriptions
.. rst-class:: classref-method
|void| **post**\ (\ )
|void| **post**\ (\ ) :ref:`🔗<class_Semaphore_method_post>`
Lowers the **Semaphore**, allowing one more thread in.
@@ -79,7 +79,7 @@ Lowers the **Semaphore**, allowing one more thread in.
.. rst-class:: classref-method
:ref:`bool<class_bool>` **try_wait**\ (\ )
:ref:`bool<class_bool>` **try_wait**\ (\ ) :ref:`🔗<class_Semaphore_method_try_wait>`
Like :ref:`wait<class_Semaphore_method_wait>`, but won't block, so if the value is zero, fails immediately and returns ``false``. If non-zero, it returns ``true`` to report success.
@@ -91,7 +91,7 @@ Like :ref:`wait<class_Semaphore_method_wait>`, but won't block, so if the value
.. rst-class:: classref-method
|void| **wait**\ (\ )
|void| **wait**\ (\ ) :ref:`🔗<class_Semaphore_method_wait>`
Waits for the **Semaphore**, if its value is zero, blocks until non-zero.