@eagleoutice/flowr - v2.15.8
    Preparing search index...

    Variable USELESS_LOOPConst

    USELESS_LOOP: {
        createSearch: () => FlowrSearchBuilderOut<
            "all",
            [],
            ParentInformation,
            "filter",
        >;
        info: {
            certainty: BestEffort;
            defaultConfig: { loopyFunctions: Set<BuiltInProcName> };
            description: "Detect loops which only iterate once";
            name: "Useless Loops";
            tags: readonly [Smell, Readability];
        };
        prettyPrint: {
            full: (result: UselessLoopResult) => string;
            query: (result: UselessLoopResult) => string;
        };
        processSearchResult: (
            elements: FlowrSearchElements<
                ParentInformation,
                FlowrSearchElement<(...)>[],
            >,
            useLessLoopConfig: UselessLoopConfig,
            data: ReadonlyFlowrAnalysisProvider<KnownParser>,
        ) => Promise<{ ".meta": { numOfUselessLoops: ... }; results: (...)[] }>;
    } = ...

    Type Declaration