bit-parallel-search 0.1.0

Blazing fast string search using bit-parallel algorithms - up to 8x faster than naive search
Documentation
{
  "users": [
    {
      "id": 1,
      "name": "John Doe",
      "email": "john@example.com",
      "role": "admin",
      "created_at": "2024-01-01T10:00:00Z",
      "last_login": "2024-01-01T15:30:00Z",
      "permissions": ["read", "write", "delete"],
      "profile": {
        "avatar": "https://cdn.example.com/avatars/john.jpg",
        "bio": "Senior developer with 10+ years experience",
        "location": "San Francisco, CA"
      }
    },
    {
      "id": 2,
      "name": "Jane Smith",
      "email": "jane@example.com",
      "role": "user",
      "created_at": "2024-01-02T09:15:00Z",
      "last_login": "2024-01-02T14:45:00Z",
      "permissions": ["read"],
      "profile": {
        "avatar": "https://cdn.example.com/avatars/jane.jpg",
        "bio": "Product manager focused on user experience",
        "location": "New York, NY"
      }
    }
  ],
  "pagination": {
    "page": 1,
    "per_page": 20,
    "total": 2,
    "total_pages": 1
  },
  "meta": {
    "request_id": "req_abc123def456",
    "timestamp": "2024-01-01T16:00:00Z",
    "version": "v1.2.3"
  }
}