1

要素が取り外し可能な場合、要素が HASH_TABLE にあることを確認するにはどうすればよいですか?

Current = HASH_TABLE[ARRAYED_SET[G], G]

add_edge (src: G; dst: G)
do
    if attached Current.at(src) as edges then
        edges.put(dst)
    end
ensure
    in: Current.at (src).has (dst)
end
4

1 に答える 1

1

あなたはそれを試しましたか:

add_edge (src: G; dst: G)
do
    if attached Current.at(src) as edges then
        edges.put(dst)
    end
ensure
    in: attached Current.at (src) as edges implies edges.has (dst)
end
于 2014-01-05T15:42:37.830 に答える