We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27a58f1 commit 5e5ecedCopy full SHA for 5e5eced
suitesparse_graphblas/create_headers.py
@@ -710,7 +710,7 @@ def handle_static_inline(node):
710
rv["GrB methods"] = sorted(grb_funcs, key=lambda x: sort_key(x["text"]))
711
rv["GxB methods"] = sorted(gxb_funcs, key=lambda x: sort_key(x["text"]))
712
rv["GB methods"] = sorted(gb_funcs, key=lambda x: sort_key(x["text"]))
713
- rv["static inline"] = si_funcs # Should we sort these?
+ rv["static inline"] = sorted(si_funcs, key=lambda x: sort_key(x["text"]))
714
for key in groups.keys() - rv.keys():
715
rv[key] = groups[key]
716
return rv
0 commit comments