this repo has no description
1/* Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) */
2#pragma once
3
4#include "handles.h"
5
6namespace py {
7
8RawObject structseqGetItem(Thread* thread, const Object& structseq, word index);
9
10RawObject structseqSetItem(Thread* thread, const Object& structseq, word index,
11 const Object& value);
12
13RawObject structseqNew(Thread* thread, const Type& type);
14
15RawObject structseqNewType(Thread* thread, const Str& name,
16 const Tuple& field_names, word num_in_sequence,
17 word flags);
18
19} // namespace py