arikawa/bot
diamondburned (Forefront) 09ae9fbb07 Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
..
extras/arguments API: Added reactions into rate limit parsers 2020-02-07 08:31:10 -08:00
shellwords
README.md
arguments.go Bot: added more tests 2020-02-04 21:19:45 -08:00
arguments_test.go Bot: added more tests 2020-02-04 21:19:45 -08:00
ctx.go Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
ctx_call.go Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
ctx_plumb_test.go
ctx_test.go Revert "Gateway: State refactored into smaller components" 2020-02-29 18:54:14 -08:00
error.go Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
nameflag.go Bot: Flag separator is now a variable 2020-03-03 15:24:08 -08:00
nameflag_test.go
subcommand.go Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
subcommand_test.go Bot: added more tests 2020-02-04 21:19:45 -08:00

README.md

What are the performance impacts of this library?

Not a lot for a Discord bot:

# Cold functions, or functions that are called once in runtime:
BenchmarkConstructor-8               	  150537	      7617 ns/op
BenchmarkSubcommandConstructor-8     	  155068	      7721 ns/op

# Hot functions, or functions that can be called multiple times:
BenchmarkCall-8                      	 1000000	      1194 ns/op
BenchmarkHelp-8                      	 1751619	       680 ns/op

# Hot functions, but called implicitly on non-message-create events:
BenchmarkReflectChannelID_1Level-8   	10111023	       113 ns/op
BenchmarkReflectChannelID_5Level-8   	 1872080	       686 ns/op