EitherDate
No overview available.
Attributes
| Attribute | Type | Description |
|---|---|---|
| Raw | Date | Stores a native Date object used for direct date manipulation without Python overhead. |
| Py | Bound< 'py, PyDate > | Stores a reference to a Python PyDate object for interoperability with Python's datetime module. |
Constructor
Signature
def EitherDate()
Signature
def Raw(
date: Date
) - > [EitherDate](eitherdate.md?sid=input_datetime_eitherdate)
Parameters
| Name | Type | Description |
|---|---|---|
| date | Date | The native date object to be wrapped. |
Signature
def Py(
py_date: Bound< 'py, PyDate >
) - > [EitherDate](eitherdate.md?sid=input_datetime_eitherdate)
Parameters
| Name | Type | Description |
|---|---|---|
| py_date | Bound< 'py, PyDate > | The bound Python date object to be wrapped. |