arikawa/bot
diamondburned (Forefront) 7905e2138b Fixed tests that broke because of previous breaking change 2020-04-12 16:24:28 -07:00
..
extras/arguments Bot: Corrected arguments.Emoji's ID field 2020-04-08 21:33:46 -07:00
shellwords Improved the command parser's error 2020-01-25 23:17:18 -08:00
README.md Bot: trivial fixes 2020-01-28 16:01:39 -08:00
arguments.go Bot: Added Usager, improved help 2020-04-08 21:25:50 -07:00
arguments_test.go Bot: added more tests 2020-02-04 21:19:45 -08:00
ctx.go Bot: Removed deprecated Wait() API 2020-04-12 11:08:19 -07:00
ctx_call.go Bot: Prettier help formatting 2020-04-09 23:10:21 -07:00
ctx_plumb_test.go Fixed tests that broke because of previous breaking change 2020-04-12 16:24:28 -07:00
ctx_test.go Fixed tests that broke because of previous breaking change 2020-04-12 16:24:28 -07: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 Tweaks to tests and CI 2020-01-20 03:15:41 -08:00
subcommand.go Bot: Descriptions now show next to arguments 2020-04-10 20:17:55 -07:00
subcommand_test.go Bot: Fixed tests to pass with the new Prefixer API 2020-04-06 13:31:27 -07: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