Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Would it be safe to rely on DeHL for new projects?

Tags:

delphi

dehl

I've been browsing the DeHL repository on GoogleCode, and it looks really good to me.

  • Many interesting features that make basic programming tasks easier; Some neat things that are in the DotNet FCL, but are missing from the Delphi RTL can be found in this library;

  • Coded in a modern way, making good use of new language features;

  • Each class, record type, member function and parameter is documented in such a way that it'll show in the code completion of the Delphi IDE;

  • Well-organized and clean code;

  • Plenty of unit tests;

  • Open source and Free;

Basically, it looks like this library should've been included with Delphi, as part of the RTL.

One major drawback: The project has been discontinued. :-(

Now my question is:
Would it be safe to rely on this library for future projects, and use it as a base framework to build upon?

Basically I'd like to hear from somebody who's actually used this library whether or not it's worth it to invest time in getting to know this library, and why.

like image 410
Wouter van Nifterick Avatar asked May 28 '12 19:05

Wouter van Nifterick


People also ask

Why are there no Fab semiconductors in India?

Yet, India lags in the establishment of semiconductor wafer fabrication (FAB) units – due to a weak ecosystem and shortage of resources as compared to more competitive bases like China and Vietnam.

What do semiconductor companies do?

The semiconductor industry is the aggregate of companies engaged in the design and fabrication of semiconductors and semiconductor devices, such as transistors and integrated circuits.

Why Semiconductors are important for India?

Semiconductors are an essential component of modern technology, including automobiles, electronic devices, and even medical devices. The strategy will enhance semiconductor production, attract enormous investments and create significant employment, in addition to lowering the country's dependency on imports.

Can India develop chips?

India could have a large role to play in the semiconductor industry, analysts say. India has been making moves to bring the manufacturing of chips to the country. New Delhi's strategy is twofold — lure in foreign companies and build on areas where India has an advantage, such as chip design.


1 Answers

IIRC the project was discontinued because it was an over-engineered first attempt and a lot of its features turned out really messy and bloated. You should look at Alex Ciobanu's second attempt, which is simply called Collections. It contains most of the interesting features from DeHL, but leaner.

Be careful, though. It still makes heavy use of generics, which will make your binary size really big if you use it a lot, because the compiler team hasn't implemented a way to collapse duplicate code yet.

like image 152
Mason Wheeler Avatar answered Sep 29 '22 17:09

Mason Wheeler