Bluestep JS Documentation
    Preparing search index...

    Interface HasMapEntries

    TODO

    TODO
    
    interface HasMapEntries {
        mapEntries(): Map<String, String>;
        mapKeys(): Set<string>;
        mapValue(key: string): string;
        mapValue(key: string, value: string): void;
        mapValues(): EList<string>;
        objectEntries(): { [key: string]: string };
        removeMapValue(key: string): string;
    }

    Implemented by

    Index

    Methods

    • Returns Map<String, String>

    • TODO

      Returns Set<string>

    • TODO

      Parameters

      • key: string

      Returns string

    • TODO

      Parameters

      • key: string
      • value: string

      Returns void

    • TODO

      Returns EList<string>

    • Returns { [key: string]: string }

    • TODO

      Parameters

      • key: string

      Returns string