Skip to content
#

cadence

Here are 86 public repositories matching this topic...

turbolent
turbolent commented Mar 17, 2021

Issue To Be Solved

Currently the for-in loop is only supported for struct arrays, not resource arrays.

Enable for-in loops to iterate over arrays of resources, binding an authorized reference:

pub resource R {
    pub let name: String

    init(name: String) {
        self.name = name
    }
}

let rs <- [
    <-create R(name: "bar"), 
    <-create R(name: "foo")
patrickschulz
patrickschulz commented Jul 9, 2020

The code provides some basic drawing functions such as rectangles, but it relies on the existance of cell generators. These need to be written. Anything that is needed for layout (inductors, capacitors, optical components, diodes, transistors, text etc.) is welcome.
If any drawing functions are missing I can add them.

Improve this page

Add a description, image, and links to the cadence topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cadence topic, visit your repo's landing page and select "manage topics."

Learn more