opcCreateQuery
opcCreateQuery( ?namet_name[?categoryt_category] [?appNamet_appName] [?expressionsl_expressions]) =>t/ nil
Description
Defines a query that can be instantiated in a cellview to generate a set of objects matching the expressions that constitute the Navigator custom query.
Arguments
Value Returned
Examples
Create a query containing iterated instances and buses.
condition = opcCreateCondition(?attrName 'Bits ?opName "!=" ?value "1")
instExpression = opcCreateExpression(?dataSource "Instances" ?conditions list(condition))
netExpression = opcCreateExpression(?dataSource "Nets" ?conditions list(condition))
opcCreateQuery(?name "MultiBit" ?category "Design Exploration" ?expressions list(instExpression netExpression))
Related Topics
Return to top