Description Usage Arguments Examples
Return the program fanout as a histogram bucketed by powers of 2.
1 |
pattern |
a pre-compiled regular expression or a string |
... |
further arguments passed to |
1 2 3 4 5 6 7 8 9 | re1 = re2("(?:(?:(?:(?:(?:.)?){1})*)+)")
re10 = re2("(?:(?:(?:(?:(?:.)?){10})*)+)")
re100 = re2("(?:(?:(?:(?:(?:.)?){100})*)+)")
re1000 = re2("(?:(?:(?:(?:(?:.)?){1000})*)+)")
get_program_fanout(re1)
get_program_fanout(re10)
get_program_fanout(re100)
get_program_fanout(re1000)
|
index value
1 0 6
2 3 1
index value
1 0 60
2 7 10
index value
1 0 600
2 10 100
index value
1 0 6000
2 13 1000
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.