IsIrregular returns true if file is a special "Irregular" node
()
| 233 | |
| 234 | // IsIrregular returns true if file is a special "Irregular" node |
| 235 | func (fn *Node) IsIrregular() bool { |
| 236 | return (fn.Info.Mode & os.ModeIrregular) != 0 |
| 237 | } |
| 238 | |
| 239 | // isExternal returns true if file is external to main file tree |
| 240 | func (fn *Node) isExternal() bool { |
no outgoing calls
no test coverage detected