You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Encodes a single digit of a POSTNET "A" bar code. @param digit the single digit to encode. @return a bar code of the digit using "|" as the long bar and "," as the half bar.*/
string encode(int digit);
Personally, I also think it's nice to have a colon after each parameter name similar to Python:
i.e.
/** Encodes a single digit of a POSTNET "A" bar code. @param digit: the single digit to encode. @return: a bar code of the digit using "|" as the long bar and "," as the half bar.*/
string encode(int digit);
Thanks so much!
Fotis
The text was updated successfully, but these errors were encountered:
Hello there, thanks so so much for producing this extension, it's fantastic!
I was wondering if you would consider an option to have something like this: http://www.edparrish.net/common/cppdoc.html#functioncomment
i.e.
Personally, I also think it's nice to have a colon after each parameter name similar to Python:
i.e.
Thanks so much!
Fotis
The text was updated successfully, but these errors were encountered: