PKHeX/PKHeX.Core/Legality/RNG
Kurt 6441bdadd8
Add specialized struct for Moveset and IV specs (#3572)
`Moveset` struct stores 4 moves, and exposes methods to interact with a moveset.
`IndividualValueSet` stores a 6 IV template (signed).

Performance impact:
* Less allocating on the heap: Moves - (8 bytes member ptr, 20 bytes heap->8 bytes member)
* Less allocating on the heap: IVs - (8 bytes member ptr, 28 bytes heap->8 bytes member)
* No heap pointers, no need to jump to grab data.
* Easy to inline logic for checking if moves are present (no linq usage with temporary collections).

End result is faster ctor times, less memory used, faster program.
2022-08-21 17:34:32 -07:00
..
Algorithms Add more xmldoc 2022-08-21 01:39:16 -07:00
Frame Add more xmldoc 2022-08-21 01:39:16 -07:00
Locks Add specialized struct for Moveset and IV specs (#3572) 2022-08-21 17:34:32 -07:00
Methods Move files 2022-08-11 00:24:59 -07:00
MethodFinder.cs Fix incorrect method call 2022-08-18 01:17:03 -07:00
PIDGenerator.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
PIDIV.cs Remove childless xmldoc 2021-12-26 19:44:04 -08:00
PIDType.cs Delete unused logic 2022-08-11 00:25:16 -07:00
RaidRNG.cs Add specialized struct for Moveset and IV specs (#3572) 2022-08-21 17:34:32 -07:00