ccrma / chuck

ChucK Music Programming Language
http://chuck.stanford.edu/
GNU General Public License v2.0
799 stars 127 forks source link

CKDoc add option to disable alphabetical sorting #444

Closed AndrewAday closed 2 months ago

AndrewAday commented 2 months ago

CKDoc always sorts the member functions documentation of a class alphabetically. This is disadvantageous for large classes with many variables / functions that are better grouped semantically.

Option could look like:

CKDoc doc;
doc.sortAlphaNumeric(false);
gewang commented 2 months ago

PR merged 15e334392005e5f43453eaeaeb92cfbfcc8248ed

CKDoc doc;
doc.sort( false );