binding
Here are 597 public repositories matching this topic...
-
Updated
Dec 5, 2021 - Swift
-
Updated
Jan 4, 2022 - C++
-
Updated
Nov 22, 2021 - Java
Describe the bug
Broker specifications link is broken
Expected behavior
Find documentation about broker specification
To Reproduce
Click here: https://github.com/knative/specs/blob/main/specs/eventing/broker.md
Knative release version
1.0
-
Updated
Dec 8, 2021 - Go
-
Updated
Feb 5, 2021 - Swift
-
Updated
Dec 29, 2021 - Lua
-
Updated
Oct 14, 2021 - Go
-
Updated
Dec 1, 2021 - C++
-
Updated
Dec 28, 2021 - Emacs Lisp
-
Updated
Jan 5, 2021 - Swift
-
Updated
Nov 9, 2021 - C
-
Updated
Oct 25, 2021 - Swift
-
Updated
Oct 31, 2021 - Swift
-
Updated
Apr 16, 2021 - C++
Create an example that debounces events fired:
Use a range input to define the debouncing-interval and offer a button that uses this interval debouncing it's clicks.
-
Updated
Jul 2, 2021 - Kotlin
-
Updated
Nov 23, 2017 - Java
Discussion on the state of documentation for this library.
Code comments.
Using the same comments with the same style as raylib. One idea is to change them to the xmldoc style which can be used to generate external documentation. Unsure if this should be done but worth looking into.
Tech notes
Documenting api differences to make it easier for people new to raylib. Could move deta
-
Updated
Dec 8, 2021 - Nim
Improve this page
Add a description, image, and links to the binding topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the binding topic, visit your repo's landing page and select "manage topics."
I don't think PyO3 currently exposes an API to get
super()from Rust.As far as I'm aware there aren't special C APIs to call
super(), instead I thinkffi::PySuper_Typecan be cast to&PyTypeand we can then use.call1((type, obj))to fill in the arguments. I think we'd always need to use the two-argument form as I don't think the PEP 3135 syntax sugar can apply here.Some ideas wh