ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示

/doc/efuns/map_delete

HOME :: doc :: efuns :: map_delete

     mmmmaaaapppp____ddddeeeelllleeeetttteeee((((3333))))          MMMMuuuuddddOOOOSSSS ((((5555 SSSSeeeepppp 1111999999994444))))           mmmmaaaapppp____ddddeeeelllleeeetttteeee((((3333))))

     NNNNAAAAMMMMEEEE
          map_delete() - remove a (key, value) pair from a mapping
          based on the key

     SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
          void map_delete( mapping m, mixed element );

     DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
          map_delete removes the (key, value) from the mapping m that
          has key equal to element.

          For example, given:

               mapping names;

               names = ([]);
               names["truilkan"] = "john";
               names["wayfarer"] = "erik";
               names["jacques"] = "dwayne";

          Then:

               map_delete(names,"truilkan");

          causes the mapping 'names' to be equal to:

               (["wayfarer" : "erik", "jacques" : "dwayne"])

          keys(names) will not contain "truilkan" after
          map_delete(names,"truilkan") is called [unless ("truilkan",
          *) is subsequently added back to the mapping].

     SSSSEEEEEEEE AAAALLLLSSSSOOOO
          allocate_mapping(3)

     Page 1                                          (printed 3/16/95)

HOME :: doc :: efuns :: map_delete