mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:48:01 +02:00
GetMutableValue and TryGetMutableValue for fcl-stl.TMap and rtl-generics.generics.TDictionary
This commit is contained in:
parent
bc7ed55aab
commit
b3e8d88f68
@ -75,7 +75,9 @@ type
|
|||||||
function FindGreater(key:TKey):TIterator;inline;
|
function FindGreater(key:TKey):TIterator;inline;
|
||||||
function FindGreaterEqual(key:TKey):TIterator;inline;
|
function FindGreaterEqual(key:TKey):TIterator;inline;
|
||||||
function GetValue(key:TKey):TValue;inline;
|
function GetValue(key:TKey):TValue;inline;
|
||||||
|
function GetMutableValue(key:TKey):PTValue;inline;
|
||||||
function TryGetValue(key:TKey; out Value: TValue): boolean;inline;
|
function TryGetValue(key:TKey; out Value: TValue): boolean;inline;
|
||||||
|
function TryGetMutableValue(key:TKey;out pvalue:PTValue):boolean;inline;
|
||||||
procedure Insert(key:TKey; value:TValue);inline;
|
procedure Insert(key:TKey; value:TValue);inline;
|
||||||
function InsertAndGetIterator(key:TKey; value:TValue):TIterator;inline;
|
function InsertAndGetIterator(key:TKey; value:TValue):TIterator;inline;
|
||||||
function Min:TIterator;inline;
|
function Min:TIterator;inline;
|
||||||
@ -180,6 +182,18 @@ begin
|
|||||||
GetValue:=FSet.NFind(Pair)^.Data.Value;
|
GetValue:=FSet.NFind(Pair)^.Data.Value;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TMap.GetMutableValue(key:TKey):PTValue;inline;
|
||||||
|
var Pair:TPair;
|
||||||
|
Node:TMSet.PNode;
|
||||||
|
begin
|
||||||
|
Pair.Key:=key;
|
||||||
|
Node:=FSet.NFind(Pair);
|
||||||
|
if Node=nil then
|
||||||
|
result:=nil
|
||||||
|
else
|
||||||
|
result:=@Node^.Data.Value;
|
||||||
|
end;
|
||||||
|
|
||||||
function TMap.TryGetValue(key: TKey; out Value: TValue): boolean;
|
function TMap.TryGetValue(key: TKey; out Value: TValue): boolean;
|
||||||
var Pair:TPair;
|
var Pair:TPair;
|
||||||
Node: TMSet.PNode;
|
Node: TMSet.PNode;
|
||||||
@ -191,6 +205,14 @@ begin
|
|||||||
Value := Node^.Data.Value;
|
Value := Node^.Data.Value;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TMap.TryGetMutableValue(key:TKey;out pvalue:PTValue):boolean;
|
||||||
|
var Pair:TPair;
|
||||||
|
Node:TMSet.PNode;
|
||||||
|
begin
|
||||||
|
pvalue:=GetMutableValue(key);
|
||||||
|
Result:=pvalue<>nil;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TMap.Insert(key:TKey; value:TValue);inline;
|
procedure TMap.Insert(key:TKey; value:TValue);inline;
|
||||||
var Pair:TPair;
|
var Pair:TPair;
|
||||||
begin
|
begin
|
||||||
|
@ -607,6 +607,24 @@ begin
|
|||||||
SetValue(FItems[LIndex].Pair.Value, AValue);
|
SetValue(FItems[LIndex].Pair.Value, AValue);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TOpenAddressing<OPEN_ADDRESSING_CONSTRAINTS>.GetMutableValue(const AKey: TKey): PValue;
|
||||||
|
var
|
||||||
|
LIndex: SizeInt;
|
||||||
|
LHash: UInt32;
|
||||||
|
begin
|
||||||
|
LIndex := FindBucketIndex(FItems, AKey, LHash);
|
||||||
|
if LIndex < 0 then
|
||||||
|
Result := Nil
|
||||||
|
else
|
||||||
|
Result := @FItems[LIndex].Pair.Value;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TOpenAddressing<OPEN_ADDRESSING_CONSTRAINTS>.TryGetMutableValue(const AKey: TKey; out APValue: PValue): Boolean;
|
||||||
|
begin
|
||||||
|
APValue := GetMutableValue(AKey);
|
||||||
|
Result := APValue <>Nil;
|
||||||
|
end;
|
||||||
|
|
||||||
function TOpenAddressing<OPEN_ADDRESSING_CONSTRAINTS>.TryGetValue(const AKey: TKey; out AValue: TValue): Boolean;
|
function TOpenAddressing<OPEN_ADDRESSING_CONSTRAINTS>.TryGetValue(const AKey: TKey; out AValue: TValue): Boolean;
|
||||||
var
|
var
|
||||||
LIndex: SizeInt;
|
LIndex: SizeInt;
|
||||||
|
@ -261,6 +261,8 @@ type
|
|||||||
function ExtractPair(const AKey: TKey): TPair<TKey, TValue>;
|
function ExtractPair(const AKey: TKey): TPair<TKey, TValue>;
|
||||||
procedure Clear; override;
|
procedure Clear; override;
|
||||||
procedure TrimExcess;
|
procedure TrimExcess;
|
||||||
|
function GetMutableValue(const AKey: TKey): PValue; inline;
|
||||||
|
function TryGetMutableValue(const AKey: TKey; out APValue: PValue): Boolean;
|
||||||
function TryGetValue(const AKey: TKey; out AValue: TValue): Boolean;
|
function TryGetValue(const AKey: TKey; out AValue: TValue): Boolean;
|
||||||
function TryAdd(const AKey: TKey; const AValue: TValue): Boolean;
|
function TryAdd(const AKey: TKey; const AValue: TValue): Boolean;
|
||||||
procedure AddOrSetValue(const AKey: TKey; const AValue: TValue);
|
procedure AddOrSetValue(const AKey: TKey; const AValue: TValue);
|
||||||
|
Loading…
Reference in New Issue
Block a user