arikawa/bot
diamondburned (Forefront) 85c1326526 Bot: Added ArgsParser for each Context instead of global 2020-05-05 23:23:52 -07:00
..
extras Bot: Added ArgsParser for each Context instead of global 2020-05-05 23:23:52 -07:00
README.md Bot: trivial fixes 2020-01-28 16:01:39 -08:00
arguments.go Bot: Added ArgsParser for each Context instead of global 2020-05-05 23:23:52 -07:00
arguments_test.go Bot: Added trailing manual parser support 2020-05-03 18:33:24 -07:00
ctx.go Bot: Added ArgsParser for each Context instead of global 2020-05-05 23:23:52 -07:00
ctx_call.go Bot: Added ArgsParser for each Context instead of global 2020-05-05 23:23:52 -07:00
ctx_plumb_test.go Bot: Fixed bug where RawArguments still have the command 2020-05-03 22:57:44 -07:00
ctx_test.go Bot: Added ArgsParser for each Context instead of global 2020-05-05 23:23:52 -07:00
error.go Bot: Added variadic arguments support 2020-05-03 15:59:10 -07:00
nameflag.go Bot: Added package infer for getting IDs from unknown structs 2020-05-05 23:15:25 -07:00
nameflag_test.go API: Added AllowedMentions and more tests 2020-04-19 16:35:37 -07:00
subcommand.go Bot: Variadic arguments are now ellipsized in help 2020-05-03 18:35:51 -07:00
subcommand_test.go Bot: Fixed bug where RawArguments still have the command 2020-05-03 22:57:44 -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