This file is indexed.

/usr/share/doc/libluabind-doc/yield.rst is in libluabind-doc 0.9.1+dfsg-9.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
yield
----------------

Motivation
~~~~~~~~~~

Makes a C++ function yield when returning.

Defined in
~~~~~~~~~~

.. parsed-literal::

    #include <luabind/yield_policy.hpp>

Synopsis
~~~~~~~~

.. parsed-literal::

    yield

Example
~~~~~~~

.. parsed-literal::

    void do_thing_that_takes_time()
    {
        ...
    }

    ...

    module(L)
    [
        def("do_thing_that_takes_time", &do_thing_that_takes_time, **yield**)
    ];