Main Content

next

Class: systemcomposer.rptgen.finder.DictionaryFinder
Namespace: systemcomposer.rptgen.finder

Get next dictionary search result

Since R2022b

Syntax

result = next(finder)

Description

result = next(finder) gets the next Dictionary search result.

Input Arguments

expand all

Dictionary finder, specified as a systemcomposer.rptgen.finder.DictionaryFinder object.

Output Arguments

expand all

Dictionary result, returned as a systemcomposer.rptgen.finder.DictionaryResult object.

Examples

expand all

Use the DictionaryFinder and DictionaryResult classes to generate a report.

import mlreportgen.report.*
import slreportgen.report.*
import systemcomposer.rptgen.finder.*

scKeylessEntrySystem
model_name = "KeylessEntryArchitecture";
model = systemcomposer.loadModel(model_name);
rpt = slreportgen.report.Report(output="DictionaryFinderReport",...
CompileModelBeforeReporting=false);
add(rpt,TitlePage("Title",sprintf('Dictionaries in %s Model',model_name)));
add(rpt,TableOfContents);

dictFinder = DictionaryFinder(model_name);

chapter = Chapter("Title","Dictionaries");
while hasNext(dictFinder)
    dict = next(dictFinder);
    sect = Section("Title",dict.Name);
    add(sect,dict);
    add(chapter,sect);
end

add(rpt,chapter);
close(rpt);
rptview(rpt)

Version History

Introduced in R2022b