mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 08:52:08 +01:00
19 lines
217 B
PHP
19 lines
217 B
PHP
<?php
|
|
|
|
/**
|
|
* @generate-function-entries
|
|
*/
|
|
|
|
abstract class PySequence extends PyObject
|
|
{
|
|
public function contains(mixed $v): bool
|
|
{
|
|
|
|
}
|
|
|
|
public function slice(int $s, int $e): PyObject
|
|
{
|
|
|
|
}
|
|
}
|