robin-sparkless 4.4.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
{
  "name": "bitwise_bitwise_not",
  "pyspark_version": "3.5",
  "input": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "num",
        "type": "string"
      },
      {
        "name": "num2",
        "type": "string"
      }
    ],
    "rows": [
      [
        1,
        5,
        3
      ],
      [
        2,
        10,
        7
      ],
      [
        3,
        15,
        12
      ]
    ]
  },
  "operations": [],
  "expected": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "num",
        "type": "string"
      },
      {
        "name": "num2",
        "type": "string"
      }
    ],
    "rows": [
      [
        "1",
        "5",
        "3"
      ],
      [
        "2",
        "10",
        "7"
      ],
      [
        "3",
        "15",
        "12"
      ]
    ]
  }
}