1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-11-30 18:53:30 +00:00
arikawa/bot
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
arguments.go
arguments_test.go
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
nameflag.go
nameflag_test.go
README.md
subcommand.go Bot: Descriptions now show next to arguments 2020-04-10 20:17:55 -07:00
subcommand_test.go

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