Function lookup [src]

Prototype

pub fn lookup(self: *DynLib, comptime T: type, name: [:0]const u8) ?T

Parameters

self: *DynLibT: typename: [:0]const u8

Source

pub fn lookup(self: *DynLib, comptime T: type, name: [:0]const u8) ?T { return self.inner.lookup(T, name); }