Skip to content
#

cadence

Here are 96 public repositories matching this topic...

longquanzheng
longquanzheng commented Feb 5, 2021

Is your feature request related to a problem? Please describe.
Need to search using LIKE operator with search attributes? eg, WorkflowType LIKE workflowType-prefix.*
Right now the workflowType is using keyword type for performance reason so it doesn't support wildcard search.

https://www.elastic.co/guide/en/elasticsearch/reference/current/keyword.html

keyword fields are untokeniz
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