Displaying 3 results from an estimated 3 matches for "beginflowsequence".
2013 Aug 02
5
[LLVMdev] Coding Standards: Iterator begin and end functions.
...classes that are not STL like, but have multiple
collections that can be iterated over.
* llvm/IR uses global_begin, alias_begin, etc. I.E., singular name + _begin().
* llvm/Object uses begin_symbols, begin_sections, etc. I.E, begin_ +
plural name.
* others (YAML, LoopIterator) use beginSequence, beginFlowSequence, etc.
I would like to propose adding the the format used by llvm/IR to the
coding standard since it seems to be the most common.
Cheers,
Rafael
2013 Aug 02
0
[LLVMdev] Coding Standards: Iterator begin and end functions.
...t have multiple
> collections that can be iterated over.
>
> * llvm/IR uses global_begin, alias_begin, etc. I.E., singular name +
> _begin().
> * llvm/Object uses begin_symbols, begin_sections, etc. I.E, begin_ +
> plural name.
> * others (YAML, LoopIterator) use beginSequence, beginFlowSequence, etc.
>
> I would like to propose adding the the format used by llvm/IR to the
> coding standard since it seems to be the most common.
>
Please do so. That is clearly the more consistent pattern to follow.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:...
2013 Aug 02
0
[LLVMdev] Coding Standards: Iterator begin and end functions.
..., but have multiple
> collections that can be iterated over.
>
> * llvm/IR uses global_begin, alias_begin, etc. I.E., singular name + _begin().
> * llvm/Object uses begin_symbols, begin_sections, etc. I.E, begin_ +
> plural name.
> * others (YAML, LoopIterator) use beginSequence, beginFlowSequence, etc.
>
> I would like to propose adding the the format used by llvm/IR to the
> coding standard since it seems to be the most common.
+1
-Chris