ExoBinding is no longer necessary
In search of classes that are not using deprecated function but yet unnecessary, I found out that there is a lookalike GObjects
class for ExoBinding
. It was fairly easy to find because its name was GBinding
. Since its functionality and methods are very similar, I first thought that ExoBinding
was an extension of GBinding
but no, it was an independent implementation of the exact same feature. But why such a class exist? Turns out that ExoBinding
was created 6 years earlier than GBinding
. Since GBinding
was introduced in 2010, the maintainer of Exo in year 2004 had to create one. Fortunately, it's 2021 now and we don't have to manage this duplicate feature.
Useful link:
Edited by Yongha Hwang