This file is indexed.

/usr/lib/pike7.8/7.6/modules/Image.pmod/Image.pike is in pike7.8-image 7.8.866-5build1.

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
#pike 7.7

inherit Image.Image;

//! Do @expr{(array)Image.Colortable(this, n)@} instead.
//! @deprecated
array(Image.Color) select_colors(int n) {
  return (array)Image.Colortable(this, n);
}

//! Do @expr{Image.Colortable(t)->map(this)@} instead.
//! @deprecated
Image.Image map_closest(array(array(int)) t) {
  return Image.Colortable(t)->map(this);
}

//! Do @expr{Image.Colortable(t)->map(this)@} instead.
//! @deprecated
Image.Image map_fast(array(array(int)) t) {
  return Image.Colortable(t)->map(this);
}

//! Do
//! @expr{Image.Colortable(t)->floyd_steinberg()->map(this)@}
//! instead.
//! @deprecated
Image.Image map_fs(array(array(int)) t) {
  return Image.Colortable(t)->floyd_steinberg()->map(this);
}