Main Content

hasNext

Class: systemcomposer.rptgen.finder.AllocationSetFinder
Namespace: systemcomposer.rptgen.finder

Determine if allocation set search result queue is nonempty

Since R2022b

Syntax

nonempty = hasNext(finder)

Description

nonempty = hasNext(finder) determines whether the AllocationSet search result queue is nonempty.

Input Arguments

expand all

Allocation set finder, specified as a systemcomposer.rptgen.finder.AllocationSetFinder object.

Output Arguments

expand all

Whether queue is nonempty, returned as a logical.

Data Types: logical

Examples

expand all

Use the AllocationSetFinder and AllocationSetResult classes to generate a report.

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

rpt = slreportgen.report.Report(output="AllocationSetFinderReport",...
CompileModelBeforeReporting=false);
add(rpt,TitlePage("Title","Allocation Sets"));
add(rpt,TableOfContents);

allocationSetFinder = AllocationSetFinder("AllocationSet.mldatx");
chapter = Chapter("Title","Allocation Set");

while hasNext(allocationSetFinder)
    allocationSets = next(allocationSetFinder);
    sect = Section(strcat("Allocations in ",allocationSets.Name));
    add(sect,allocationSets);
    add(chapter,sect);
end

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

Version History

Introduced in R2022b