Making the `Axis` Enum public
See original GitHub issueIs your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. What kind of performance improvements would you like to see with this new API?
I think it would be helpful to make the Axis
enum public, so users can pass that in whenever an axis argument is required at the API level. The enum can be found here.
We also have a JoinType
enum - should this be made public as well?
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Enum Axis | Package Manager UI website - Unity - Manual
Enum Axis. Human readable axis enum. ... Syntax. public enum Axis ... -Z axis. Down. -Y axis. Forward. Z axis. Left. -X axis....
Read more >How can I use enum with Vector3 axis? - Stack Overflow
You can make something like this: public class Rotate : MonoBehaviour { public enum AxisToRotate { Back, Down, Forward, Left, Right, Up, ...
Read more >Enum Axis | Package Manager UI website
Human readable axis enum. ... public enum Axis. Fields. Name, Description. Backward. -Z axis. Down. -Y axis. Forward. Z axis. Left. -X axis....
Read more >Unity Tutorial: How to Use Enums
Learn what an enum is, discover how and why you can use enums when creating games in Unity. Then use an enum to...
Read more >AxisType Enum (System.Windows.Forms.DataVisualization ...
Specifies the axis type for the X and Y-axes of a Series. ... public enum AxisType ... A Series is plotted using two...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Wouldn’t this be a divergence to pandas API? I think those enums should only be for our internal usage.
I think I would side with @YarShev here… unless we explicitly expose these classes via
modin.pandas.experimental
or some other namespace specifically highlighting those are non-pandas-compliant?