Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbf / tw7752.pp
Size: Mime:
{ %fail }

{$mode objfpc}
unit tw7752;
interface
type generic TMapNode<_Key,_Value> = class(TObject)
       key: _Key;
       value: _Value;
     end;
     generic TMap<_Key,_Value> = class(TObject)
     private
     public
       procedure Insert(x: TMapNode);
     end;

implementation

procedure TMap.Insert(x: TMapNode);
	procedure TreeInsert(z: TMapNode);
	var x,y: TMapNode;
	begin
	end;
begin
end;

end.