The self-documenting tag has no wiki summary.
75
votes
14answers
2k views
Should programmers use boolean variables to “document” their code?
I'm reading McConell's Code Complete, and he discusses using boolean variables to document your code. For example, instead of:
if((elementIndex < 0) || (MAX_ELEMENTS < elementIndex) ||
...
5
votes
3answers
134 views
Documenting class attribute
Following sample is taken from "Dive into python" book.
class MP3FileInfo(FileInfo):
"store ID3v1.0 MP3 tags"
tagDataMap = ...
This sample shows documenting the MP3FileInfo, but how can I ...
0
votes
2answers
31 views
documenting a library — everything or just the functions from the public header?
if you are developing and documenting a library.. do you document every single function / data structure from every source file, or just the public ones that appear on the public header??
im leaning ...